:EDIT START:
Should anyone stumble across this q then here's a small heads up.
After getting newLines to work I wanted to set the row height to match the content. To do this I simply set the row height to the number of newLines in the cellValue.
However when creating a spreadsheet using poi it seems to be matter if you apply the cellStyle before or after the cellValue. In my case it only worked if I apply the cellStyle before adding the cellValue.
Oh and remember that rowHeight is defined as 1/256 of a character(!?!?!) so set rowHeight to
(short)(numberOfNewLines*256)
:EDIT END:
I have this piece of code that generates an Excel spreadsheet. The contents of some of the cells are created using
cell.setCellValue(new XSSFRichTextString(header));
cell.setCellStyle(cs);
However if I set
header = "Estimated
Duration";
then the new line is not rendered in the resulting spreadsheet. It just comes out as "EstimatedDuration".
I'm using Apache POI v3.9.
Any suggestions?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…