https://issues.apache.org/bugzilla/show_bug.cgi?id=50728
Yegor Kozlov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO --- Comment #8 from Yegor Kozlov <[email protected]> 2011-06-18 09:53:48 UTC --- I still can't reproduce it. Setting size of 255th column in a new workbook works OK. Below is my test code that produces output readable both by Excel 2003 and Excel 2010: HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet sheet = wb.createSheet(); HSSFCell cell = sheet.createRow(0).createCell(255); cell.setCellValue("xxxxxxxxxxx"); sheet.setColumnWidth(255, 76*256); FileOutputStream fileOut = new FileOutputStream("bug-50728.xls"); wb.write(fileOut); fileOut.close(); You sample code depends on "workbook1.xls", if it is required to reproduce the bug then please attach this file too. I'm using the latest build from trunk. Yegor -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- 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]
