vote up 2 vote down star
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.

flag

0% accept rate

6 Answers

vote up 1 vote down

It's different in each case.

As for creating reports, I would instead use a dedicated reporting tool, specifically Jasper Reports.

link|flag
vote up 3 vote down

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.

link|flag
is jasperreport free – unknown (google) May 10 at 14:45
is jasperreprt? – unknown (google) May 10 at 14:45
Yes, it is free – rrc7cz May 10 at 16:03
vote up 0 vote down

If your spreadsheet is very simple then exporting as CSV is acceptable; its quick and easy to code.

link|flag
vote up 0 vote down

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.

link|flag
vote up 5 vote down

It should also be mentioned that you can export tables to Excel simply by outputting an HTML table, and setting response-type to application/vnd.ms-excel. No external libraries whatsoever needed.

Something like this:

<%@ page language="java" session="true" %>
<%@ taglib uri="/WEB-INF/tld/response.tld" prefix="res" %>
<res:setHeader name="Content-Type">application/vnd.ms-excel</res:setHeader>
<res:setHeader name="Content-Disposition">attachment; filename=excel-test.xls</res:setHeader>

<table>
    <tr>
        <td>foo</td>
        <td>bar</td>
    </tr>
</table>

Note: this answer is meant to supplement this and this as it covers only one of the cases (Excel).

link|flag
vote up -1 vote down

application/vnd.ms-excel

link|flag
Answering "application/vnd.ms-excel", with no explanation at all, is not really helpful in this question. (And, in any case, that idea has already been suggested: stackoverflow.com/questions/845439/… - assuming that is what this terse answer meant.) – Jonik May 14 at 12:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.