Hi

I have created a workbook using following code :
                   HSSFWorkbook wb = new HSSFWorkbook();
                                HSSFSheet sheet1 = wb.createSheet("new sheet");
                        
                                OutputStream out = response.getOutputStream();
                                
response.setContentType("application/vnd.ms-excel");
                                response.setHeader("Content-disposition", 
                                                 "inline; filename=report.xls");
                                wb.write(out);
                                out.flush();
                                                 out.close();

Now, i have a JSP, which contains simple table.
How can i insert contents of this table to my above generated workbook.

Thanks

-- 
View this message in context: 
http://www.nabble.com/Add-JSP-generated-table-to-Excelworkbook-created-using-POI-tp21501272p21501272.html
Sent from the POI - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@poi.apache.org
For additional commands, e-mail: user-h...@poi.apache.org

Reply via email to