jXLS 0.9.8 released
jXLS is now compatible with POI 3.2 !
A work on enterprise version of jXLS is in progress
The following features are planned:
If you want any specific feature to be included into enterprise or standard jXLS edition please send your request to jxls-user or jxls-dev mailing list or post your message to jXLS forum on Sourceforge
NOTE: Standard jXLS version will continue to be supported and developed as usual
jXLS is small and easy-to-use Java library for generating Excel files using XLS templates. Also jXLS can be used to read XLS files and populate Java beans with spreadsheet data according to XML configuration file
Excel generation is required in many Java applications that have some kind of reporting functionality. The most complete library to manipulate XLS files from Java is Jakarta POI library. The problems appear when it is required to create a lot of custom and complex Excel reports with rich formatting and enhanced functionality.
In this case you have to write a great bunch of Java code for creating workbook with all required formatting, formulas and other specific settings and correctly export data from a set of Java objects. Such code is hard to debug and the task of its creating is usually errorprone and timeconsuming. The other problem is that there are many Excel components for which there is no manipulation API provided.
Fortunately POI API allows to read Excel file trying to preserve it as is and then modify it as required. It is obvious it would be much easier to create all correctly formatted report template in some Excel editing tool and specify places where real data should appear.
jXLS is a project that implements this approach and allows creation of extremely complex Excel reports just in several lines of code. All you need is to create XLS template file with all required formatting, formulas, macros etc using specific notation to indicate placement of data and then write a couple lines of code to invoke jXLS engine passing XLS template and the exported data as parameters.