generate « Excel « JSP-Servlet Q&A





1. Generate Excel WorkBOOK through JSP    coderanch.com

2. using jsp to generate excel file    coderanch.com

3. problem in excel generation using jsp.    forums.oracle.com

response.setContentType(PromaneConstants.EXPORT_CONTENT_TYPE); response.setHeaderPromaneConstants.EXPORT_HEADER_NAME,PromaneConstants.EXPORT_HEADER_VALUE+fileName); //create a POIFSFileSystem object to read the data POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(excel_template)); // create a workbook out of the input stream HSSFWorkbook wb = new HSSFWorkbook(fs); // get a reference to the worksheet HSSFSheet sheet = wb.getSheetAt(0); HSSFRow headerRow = sheet.createRow((short) 1); //create the header data cell HSSFCell headerCell = headerRow.createCell((short) 0); // add the date to ...

4. JSP Generate Multiple Excel    forums.oracle.com