Can anyone suggest me any library/jar files which I can use to export my table to excel/pdf/word.
Please tell me if there is any library by which I can create reports in jsp.
|
2
|
Can anyone suggest me any library/jar files which I can use to export my table to excel/pdf/word. Please tell me if there is any library by which I can create reports in jsp.
|
|||
|
|
|
|
It's different in each case.
As for creating reports, I would instead use a dedicated reporting tool, specifically Jasper Reports. |
||
|
|
|
|
I'd say JasperReports - which is open source - is your best bet. It would allow you to code the report once, but export it to the various formats you need. It even supports direct streaming of HTML to the browser, so it really is a code-once, use anywhere type thing. It can also scale up nicely via JasperServer. |
||||||
|
|
|
If your spreadsheet is very simple then exporting as CSV is acceptable; its quick and easy to code. |
||
|
|
|
|
I think that itext is still better for report creation, it is more straightforward, i had some (less than enough) experience with Jasper Reports, and it seemed clumsy. OTOH itext is very easy to use for developer, and we had pretty big reports done with it, without problems. You may even create rtf's (readable by Word) from itext. |
||
|
|
|
|
It should also be mentioned that you can export tables to Excel simply by outputting an HTML table, and setting response-type to Something like this:
Note: this answer is meant to supplement this and this as it covers only one of the cases (Excel). |
|||
|
|
|
|
application/vnd.ms-excel |
||
|