我正在使用HSSF工作簿使用java将数据写入excel,现在我有一个n-no字的列名,如果我正常插入它的同一行,我想把句子分成两个不同的行并插入相同的单元格。
下面是用于设置列
的代码 rowhead.createCell((short) 0).setCellValue("Hi there it is my lengthy column please help");
谢谢, 汤姆
答案 0 :(得分:2)
您只需要使用Java新行'\n'
字符将您的句子分成2行,然后将WrapText
设置为true
:
Cell cell = rowhead.createCell((short) 0));
cell.setCellValue("Hi there it is my lengthy \n column please help");
CellStyle cs = wb.createCellStyle();
cs.setWrapText(true);
cell.setCellStyle(cs);