Re: RichTextString isn't working for SXSSFWorkbook

2012-12-13 Thread Marat
ont2 ); cell.setCellValue(rt); return wb; } ------ It isn't working for 'SXSSFWorkbook'. A plain text is rendered when the 'SXSSFWorkbook' is used. But when the 'XSSFWorkbook' is used a rich text is rendered. I mean: Workbook wb = new XSSFWorkbook(); Thanks, Marat - To unsubscribe, e-mail: user-unsubscr...@poi.apache.org For additional commands, e-mail: user-h...@poi.apache.org

RichTextString isn't working for SXSSFWorkbook

2012-12-12 Thread Marat
reateCellStyle(); style.setFont(font1); copyCell.setCellStyle(style); copyCell.setCellType(Cell.CELL_TYPE_STRING); copyCell.setCellValue(rt); return wb; } --- Thanks, Marat ---