Reputation: 29806
I need to create spreadsheet in various file format: .xls, .xlsx, .ods, csv. I want to know how can I achieve this in Java and about available open source API.
I found some API for .xls, .xlsx but not .ods. Any information will be very helpful.
Thanks and Regards.
Upvotes: 5
Views: 4561
Reputation: 29806
For .ods I am using Simple ODF.
Simple ODF is moved to Apache. New link is here.
Upvotes: 0
Reputation: 23950
Have you tried the OdfToolkit? I haven't used it but it sounds like something you need.
Upvotes: 2
Reputation: 654
For pdf generation you can use apache fop and altova stylevision to generate xsl-fo files. For xls - there is apache poi and jxls for templating.
Upvotes: 1