https://bz.apache.org/bugzilla/show_bug.cgi?id=59793

Andreas Beeker <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |NEEDINFO

--- Comment #2 from Andreas Beeker <[email protected]> ---
Can you try to close your FileOutputStream?

so instead of:
  workbook.write(new FileOutputStream("c:\\Test Data\\write.xlsx"));
  workbook.close();

do:
  FileOutputStream fos = new FileOutputStream("c:\\Test Data\\write.xlsx")
  workbook.write(fos);
  fos.close();
  workbook.close();

Of course this assumes, that your initial write.xlsx is valid ...

If this doesn't work, please attach the write.xlsx (if this is the failing file
...)

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to