|
[
Permalink
| « Hide
]
fabrizio giustina added a comment - 25/Mar/06 11:43 AM
fixed as suggested, thanks
Don't know if you've fixed this already, but the DefaultHSSFExportView -- which makes use of the HssfTableWriter class to create the table -- has the same issue. This needs to be addressed in the writeHeaderFooter(String value, HSSFRow row, HSSFCellStyle style) method of the HssfTableWriter class as well:
wrong: this.currentCell.setCellValue(value); this.currentCell.setCellStyle(style); this.currentCell.setEncoding(HSSFCell.ENCODING_UTF_16); right: this.currentCell.setEncoding(HSSFCell.ENCODING_UTF_16); this.currentCell.setCellValue(value); this.currentCell.setCellStyle(style); thanks! Giorgos |
||||||||||||||||||||||||||||||||||||||||||||||||||