Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within JSP
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
TDD for a Shopping Website LiveProject
this week in the
Testing
forum!
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:
JSP
downloading text file in jsp
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
Bauke Scholtz
Ranch Hand
Posts: 2458
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Doubleposted:
https://coderanch.com/t/439858/JSP/java/downloading-txt-file-through-jsp
Please do not use browser's back button to edit a message. You're going to repost the complete message again. Use the message's edit button.
Amit Ghorpade
Bartender
Posts: 2856
10
I like...
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Subodh, please do not post the same question multiple times.It only wastes the useful time of other ranchers and reduces the number of responses you get.
Read this
for more information.
I am closing this one for you.
SCJP, SCWCD.
|
Asking Good Questions
|
Did you miss me? Did you miss this tiny ad?
Free, earth friendly heat - from the CodeRanch trailboss
https://www.kickstarter.com/projects/paulwheaton/free-heat
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
verify encoding
file download dialog box
creating html file from jsp
.pptx and .docx problem
No suitable driver problem
More...