aspose file tools
The moose likes Other Open Source Projects and the fly likes jsp to Excel using JExcel Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Products » Other Open Source Projects
Reply Bookmark "jsp to Excel using JExcel" Watch "jsp to Excel using JExcel" New topic
Author

jsp to Excel using JExcel

Jagdish Hatagale
Ranch Hand

Joined: Apr 07, 2010
Posts: 32
I have created report in jsp as html table format i want to export that html table data to excel sheet using JExcel ,
can any body help me out for this i m searching out for this by 4 days its urgent . if posiible can send me code.
thanks
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35223
    
    7
JExcel can't convert HTML. You'll need to write JExcel code that uses the same data you're using in the JSP page. That should be done in a servlet, though, since JSPs are not suitable for binary data.

An easier approach might be to use the DisplayTag library which can create HTML as well as other output formats like XLS, CSV and PDF.


Android appsImageJ pluginsJava web charts
Jagdish Hatagale
Ranch Hand

Joined: Apr 07, 2010
Posts: 32
Ulf Dittmer wrote:JExcel can't convert HTML. You'll need to write JExcel code that uses the same data you're using in the JSP page. That should be done in a servlet, though, since JSPs are not suitable for binary data.

An easier approach might be to use the DisplayTag library which can create HTML as well as other output formats like XLS, CSV and PDF.


thanks but i m completly new for this can you please tell me How that will be used in application???
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: jsp to Excel using JExcel
 
Similar Threads
importing data from database to excel sheet through JExcel Api
jxl package doenot exists
writting data to excel sheet
How To compare two excel sheets using java
JSP to Excel - beginner