3

I my app, I have used JXL to parse XLS sheets.

Now as per the client requirement I need to provide support for XLSX (Excel 2007) format also.

But it seems that JXL has not published any version which supports XLSX(Excel 2007) format.

Can anyone suggest me any way of JXL which is compatible with XLSX format ?

OR Is it required to change the API OR I can process XLSX file with JXL ?

Gunjan Shah
  • 5,088
  • 16
  • 53
  • 72

2 Answers2

7

I visited JXL api and it seems that they are not providing support for xlsx format.

So I changed my api to Apche POI 3.9.

It has good functionality for xlsx/xls processing.

halfer
  • 19,824
  • 17
  • 99
  • 186
Gunjan Shah
  • 5,088
  • 16
  • 53
  • 72
  • 1
    Could u give an example of the same? I am not able to make apache POI work with xlsx and docx. See my questions here: http://stackoverflow.com/questions/21872019/creating-a-docx-file-using-poi-ooxml-jar-file http://stackoverflow.com/questions/21872636/java-lang-noclassdeffounderror-while-creating-a-xlsx-file-using-apache-poi – SoulRayder Feb 19 '14 at 09:37
-3

add following two jars then it will work :

xmlbeans and dom4j

mt_leo
  • 67
  • 1
  • 12
  • It seems that you are misleading by this answer. Please visit JXL website http://jexcelapi.sourceforge.net/. Here they have mentioend support only for microsoft office 2003. – Gunjan Shah Mar 06 '13 at 12:34