I'm stuck on a problem in java when I want to write to cells in an Excel file and a EmptyStackException is thrown when I invoke the method write() on a WritableWorkbook object. The following is the excerpt of code:
// Note: webResource is a binary object that overrides the read method from InputStream
Workbook excelTemplateFromMimes = Workbook.getWorkbook(webResource.read(false));
ByteArrayOutputStream baos = new ByteArrayOutputStream();
WritableWorkbook workbook = Workbook.createWorkbook(baos, excelTemplateFromMimes);
WritableSheet sheet = workbook.getSheet("Sheet1");
WritableCellFormat cellFormat = new WritableCellFormat(new WritableFont(WritableFont.TAHOMA, 10));
workbook.setProtected(false);
workbook.write(); // THIS IS THE LINE THAT THROWS EmptyStackException
workbook.close();
Any suggestions? If I use an empty excel sheet for the webResource (ie Book1.xls) then the code works fine. But using my own template (excel sheet full of formulas and macros) does not work. Is this a limitation?