I am using POI HSSFWorkbook
to generate excel sheet.
I need to add a large string to HSSFCell
, I have tried using all possibilities as below to set the value but I couldn't see anything in the excel file which has been generated.
sb.append("A long text which has nearly 4000 characters");
cell.setCellValue(sb.toString());