Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am exporting data from jsp to excel as .csv. But I want it to save that .csv file on client, if it request to. Do I need to download code for save file dialog in HTML. I am using JSP and mssql server 2005. Here is my code:

FileWriter fw = new FileWriter("C:\\PHPLExcel.csv");
fw.append("Sr.No.");
fw.append(',');
fw.append("Name");
fw.append(',');
fw.append("Address");
fw.append(',');
fw.append(',');
fw.append('\n');
fw.flush();
fw.close();

Thanks.

share|improve this question
Write it to the response stream with the appropriate content-type and content-disposition headers. – Tim Medora Aug 18 '12 at 11:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.