how to download excel sheet from unix operating system
Ritu Pande
Greenhorn
Joined: Jun 05, 2005
Posts: 17
posted
0
hi,
I am creating an excel sheet and storing it in application server which runs on HP-UNIX OS. I want to download that excel sheet using jsp page. I tried the following code, but its giving the page cannot be displayed error. Is there any other way to download the excel sheet from jsp page. <% out.println("<a href=\"../XlsDownload/Download.xls\">Download</a>"); %>
Thx in adv.
ritu
Neeraj Dheer
Ranch Hand
Joined: Mar 30, 2005
Posts: 225
posted
0
try doing this Ritu:
the above will also work, but you may want to replace the 'x-download' with the specific format for excel files. i dont know what that is.
the difference would be that, browsers that recognise the format will open the file for you in Excel automatically while others will show the 'save as' or equivalent dialog box.
Neeraj Dheer
Ranch Hand
Joined: Mar 30, 2005
Posts: 225
posted
0
Ritu,
In this case, the code in the above post will set the content type. But when you set te content type as above, that means that you want to download the file specified by 'fileName'. And then you use the OutputStream of the servlet to stream the actual bytes of the file. So, the effect of the above code is to produce the 'save-as' pop-up dialog box and save the file onto the client.
I tried the following code, but its giving the page cannot be displayed error. Is there any other way to download the excel sheet from jsp page.
What errors are you getting? Disable the "Friendly error messages" feature in your browser and you should see a more descriptive stack. If not, look in your containers logs.
Aniken Aniken...please change your name to comnfirm to the naming policy as Mark mentioned...
what you are doing is similar to what i mentioned in my post... however Ben's idea of using the anchor tag seems profoundly simpler than doing all of that...
the error, and i am only speculating, probably is because the path is somehow not right???