I have a problem with Apache POI project.

I failed to use XSSF and HSSF in the "Same Java Class". Which jar should I download or which artifact should I get add into maven?

I want to handle both xls and xlsx files at the same time. When I get excel version error, I will change the XSSF to HSSF or HSSF to XSSF.

Thanks in advance

Brad

link|improve this question

44% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Instead of doing that, try using the new release of Apache POI 3.7, it has SS package which handles both HSSF and XSSF without worrying about type

Details here: http://poi.apache.org/spreadsheet/index.html

link|improve this answer
First of all thanks for your help. I checked the page you've mentioned. Ok. I've added the code below in my pom.xml : <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-contrib</artifactId> <version>3.7-beta3</version> </dependency> However, in spite of that my Java class still cannot resolve XSSFWorkbook? There is no problem on HSSFWorkbook(); Workbook[] wbs = new Workbook[] { new HSSFWorkbook(), new XSSFWorkbook() }; – Brad Revolver Nov 24 '10 at 20:43
2  
XSSFWorkbook is in groupId: org.apache.poi, artifactId: poi-ooxml – rlovtang Nov 24 '10 at 21:48
feedback

Your Answer

 
or
required, but never shown

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