Tapas Bose
Tapas Bose

Reputation: 29806

Java Spreadsheet API - Read Write Modify

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

Answers (3)

Tapas Bose
Tapas Bose

Reputation: 29806

For .ods I am using Simple ODF.

Update

Simple ODF is moved to Apache. New link is here.

Upvotes: 0

extraneon
extraneon

Reputation: 23950

Have you tried the OdfToolkit? I haven't used it but it sounds like something you need.

Upvotes: 2

sidslog
sidslog

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

Related Questions