Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within I/O and Streams
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Paul Clapham
Ron McLeod
Jeanne Boyarsky
Tim Cooke
Sheriffs:
Liutauras Vilda
paul wheaton
Henry Wong
Saloon Keepers:
Tim Moores
Tim Holloway
Stephan van Hulst
Carey Brown
Frits Walraven
Bartenders:
Piet Souris
Himai Minh
Forum:
I/O and Streams
file download !
subodh varshney
Greenhorn
Posts: 11
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
PrintWriter out1 = response.getWriter();
response.setContentType("application/octet-stream");
response.addDateHeader("Expires", 1);
response.setHeader("Content-Disposition","attachment;filename="+pagename);
out1.write(contents.substring(0,contents.length()).trim());
I m using above code it is working, but when i download file it includes some extra lines(whitespaces) in the haeder of the file
Ulf Dittmer
Rancher
Posts: 43027
76
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
You're not doing this in a
JSP
, are you? Because that wouldn't work.
Also, can you guarantee that the contents will always be text, never binary? "application/octet-stream" is generally used for binary content.
subodh varshney
Greenhorn
Posts: 11
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
yes, I m using JSP file.
content will always be text.
Ulf Dittmer
Rancher
Posts: 43027
76
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
JSPs generally insert additional whitespace. The best way to avoid that is to use a
servlet
instead.
I hired a bunch of ninjas. The fridge is empty, but I can't find them to tell them the mission.
Free, earth friendly heat - from the CodeRanch trailboss
https://www.kickstarter.com/projects/paulwheaton/free-heat
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
file download dialog box
downloading text file in jsp
file download dialog box - help me out
file download !
File Download problem with word/excel ?? only
More...