Link to home
Start Free TrialLog in
Avatar of ammad
ammad

asked on

TEXT Data Download in Browser.

I have JSP page which is Supposed to open pop up file for that client will download. But the Probelm is that when i try to out put this file to Client browser, render it itslef and didnt give any chance to download this file.
ANy idea that client will get popup to save this file on his hard disk?
Avatar of Richard Quadling
Richard Quadling
Flag of United Kingdom of Great Britain and Northern Ireland image

Hi ammad,


The reason for that is that the browser has NOT been given any information that the data being received is NOT plain text or HTML.

You would need to issue a content-type header to tell the browser that the data is NOT understandable and ask the user to download it.

In PHP this would be ...

<?php
header('Content-type: application/octet-stream');
...
?>

You need to do something similar.

But that is only have the answer.

IE will sometimes use the extension of the filename and use that as a type. WHich is a pain.

Try issueing the header() (Not sure what the Java mechanism is).

You will normally also need to issue the header() before ANY other output.

Regards,

Richard Quadling.
ammad,

http://www.javaworld.com/javaworld/javatips/jw-javatip94.html

gives a lot of useful info about this.

Regards,

Richard.
ASKER CERTIFIED SOLUTION
Avatar of Mayank S
Mayank S
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
attach e? ment

No e in the middle.
As a matter of fact, if you are using IE 5 - the 'e' is there. There was a bug ;-) which they corrected in SP 2 for IE 5. IE 6 accepts the correct spelling "attachment". Netscape seems to accept both I guess. Not sure what the target browser is in this case ;-) I guess we should try both.
Oh. That is AWFUL!!!

But, I suppose no worse that "referer" which seems is W3C wrong!
Many people can make spelling mistakes with referer ;-) it still 'looks' as though it is correct.

One can actually use the "User-Agent" request header to check what the client browser is and accordingly use "attachement" for some special cases and use "attachment" as the default ;-)
Any reason for the B grade? You can ask for more clarification if you want.