1

what are the relevant differences between this libs ? also can tell me anyone about the license of this products ?

i need to generate large files .xlsx files. Until now i used jxl lib in for .xls with a a formated header using jxl.write.WritableCellFormat.

Lucian L.
  • 11
  • 1
  • 1
  • 3
  • 3
    Have you done any research yourself yet on these products? – Gagravarr Jul 30 '13 at 12:04
  • You should check this question for the second part of your question http://stackoverflow.com/q/17313008/1469523 – ArtiBucco Jul 30 '13 at 12:54
  • 1
    Probably check this : http://stackoverflow.com/questions/14980717/what-is-the-better-api-to-reading-excel-sheets-in-java-jxl-or-apache-poi – DiTap Mar 04 '14 at 21:30
  • 1
    possible duplicate of [Evaluation from Apache POI and JExcel Api](http://stackoverflow.com/questions/6865961/evaluation-from-apache-poi-and-jexcel-api) – Paul Sweatte Oct 06 '14 at 20:22
  • Here is the a more in-depth of both JXL and POI http://stackoverflow.com/questions/14980717/what-is-the-better-api-to-reading-excel-sheets-in-java-jxl-or-apache-poi/14986986#14986986 – Alex Probert Jan 26 '16 at 12:01

2 Answers2

6

1) JXL is now JExcel.

2) You can get all list of differences between JExcel and Apache POI here

3) Both are free.

4)You should use Apache POI because JExcel does not support .xlsx format.

Community
  • 1
  • 1
Yogesh Yadav
  • 4,557
  • 6
  • 34
  • 40
1

Difference between JXL and POI is that Java JXL does not support the Excel 2007+ ".xlsx" format; it only supports ".xls" format. Apache POI supports both with a common design.