Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Java Open source Library for parsing Excel 2007 Files? [closed]

Is there a Java Open source Library for parsing Excel 2007 Files?

like image 224
Deva Annamalai Avatar asked May 07 '09 20:05

Deva Annamalai


2 Answers

Apache POI looks promising.

like image 125
Yuval F Avatar answered Oct 05 '22 19:10

Yuval F


Apache POI is the pure java answer to the question. 2007 format support is in beta right now.

OpenXLS may support it already (if GPL is fine for you). The commercial version of the same product (ExtenXLS) does support it.

Although not strictly part of the question, I should point out that any rewrite of access to Excel files will always have some deficiency over the original, so Joel Spolsky's advice is a good alternative, if you need it.

like image 28
Yishai Avatar answered Oct 05 '22 20:10

Yishai