hi i want to read xlsx file or xls file what ever it is. can XSSF support xls file ? or do i need to write the separate code for both kind of files ?

link|improve this question
1  
possible duplicate of Read xlsx file in Java – dogbane Jan 17 '11 at 10:27
feedback

2 Answers

Yes, you can use Apache POI to read and write xlsx and xls files.

link|improve this answer
feedback

If you want your code to work for both, you'll have to use the org.apache.poi.ss package. This package has been created to unify XSSF and HSSF.

link|improve this answer
thank you for the reply,yes i want to write a code that should work for both xlsx ans xls.can you please give me sample code – Srinivas Jan 17 '11 at 10:30
org.apache.poi.ss is working for both kind of files thank you very much – Srinivas Jan 29 '11 at 8:17
@Srinivas : if your problem is solved, please mark this question as answered (the little green thing just left of my answer) – Valentin Rocher Jan 31 '11 at 8:18
feedback

Your Answer

 
or
required, but never shown

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