This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JSP and the fly likes JSP Export to Excel with multiple pages Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "JSP Export to Excel with multiple pages" Watch "JSP Export to Excel with multiple pages" New topic
Author

JSP Export to Excel with multiple pages

Swarup Sarkar
Greenhorn

Joined: Jan 10, 2006
Posts: 1
I am exporting data into excel from my jsp page using,
<%response.setContentType("application/vnd.ms-excel");%>

It works fine.

What I would like to be able to do, however, is to create a new sheet (or tab if you prefer) for each table ( Suppose one table in jsp provides the information on employees and other table provides the information on departments).That means here two excell sheet will be created, one contains the information about employee and another contains information about department. Here I am not using any third party component like jxl etc.

Does anybody have an idea how to do this in jsp.

I would appreciate any help,

Swarup Sarkar
Prabhu Ramakrishnan
Greenhorn

Joined: Jan 09, 2003
Posts: 6
I don't think so. It�s not possible with JSP/HTML. JSP displays HTML content in Excel format that�s not a true Excel work book to display multiple work sheets.

When you decided to use different worksheet in a same workbook you have to use JXL or any other third party API.
Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 26192
    
  66

Swarup,
Welcome to JavaRanch!

Apache's HSSF is a good library for working with more complex Excel documents. I recommend using a servlet rather than a JSP since you will be dealing with a lot of Java code.


[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: JSP Export to Excel with multiple pages
 
Similar Threads
Jsp to Excel
write and read Excel File
Unncessary empty spaces in excel file exported from websphere server
JDBC Excel Metadata
JavaScript +POI - How to pop up a Excel Sheet