How to download a text file using jsp i

I want to provide download facility in jsp page. if i have exe <a href="sample.exe">download</a> is working . If I have a text / html file it is just displaying I want to make it download How to do it?regardssubrahmanayma
[261 byte] By [subrahmanyam.btecha] at [2007-11-27 5:58:46]
# 1

If you want to get an "Save as" dialogue, then you need to set the content-disposition in the header to "attachment". The default value is "inline".

Best solution is to create kind of a FileServlet and let it stream the right file as a download to the client. You may find the downloadFile() snippets at the bottom of this article useful: http://balusc.xs4all.nl/srv/dev-jep-pdf.html Put it in a FileServlet and call it using for example <a href="file?name=sample.exe">.

BalusCa at 2007-7-12 16:34:13 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...