Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Ok, after messing with the excel file that wouldn't write, I managed to get it to write if I unhide hidden columns. However, all my color and format was lost, also the JXL API stripped out drop down boxes and some conditional logic I had in my excel. Also, some column headers are just blank. Does anyone have experience around this? I'm gathering 'no' due to the lack of responses. I'll keep posting more stuff as I discover it. Does anyone know of a way to programmatically insert drop-downs into the excel using java? – user1567874 Sep 7 '12 at 14:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.