This project was for a Java spreadsheet tools company.
ExtenXLS is a Java spreadsheet library designed for developers familiar with the Java syntax, spreadsheet programs, and the concept of file templates. This guide is intended to get you started quickly programming with ExtenXLS.
Note: Review the WorkBookHandle constructors in the API documentation
to see which WorkBookHandle is appropriate for your application.
WorkBookHandle.getWorkSheet(String sheetname) method.WorkSheetNotFoundException in case the expected sheet does not already exist in the file.WorkSheetHandle.getCell(Sheetname:CellAddress) methodCellHandle WorkSheetHandle.add(Object ob, String address) method.CellHandle.setCellVal(Object ob) and object CellHandle.getCellVal() methods.WorkBookHandle.getBytes() method. If you are writing to a web application, you can send the bytes over a ServletResponse to a browser, write out to a file, or to any byte array consumer.