Eitan Bendersky
Eitan Bendersky

Reputation: 67

How to convert Excel file to Java object

I am looking for a jar file that convert Excel file to an Java object, similar to javax.xml.bind. I use eBay.xcelite but it can convert only by sheet as object and row as attributes. And i want to specify the object type by cell X data.

Upvotes: 3

Views: 4431

Answers (2)

Hakan Özler
Hakan Özler

Reputation: 988

There is one framework, Poiji, to convert Excel rows to Java objects. It uses Apache POI internally. We use it for our purpose.

Upvotes: 0

Alex
Alex

Reputation: 11579

This is one of the library which can help you to do it
http://poi.apache.org/spreadsheet/index.html

Upvotes: 2

Related Questions