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.