Row row = sheet.createRow(2);
Cell cell = row.createCell(2);
cell.setCellValue("Use \n with word wrap on to create a new line");
//to enable newlines you need set a cell styles with wrap=true
CellStyle cs = wb.createCellStyle();
cs.setWrapText(true);
cell.setCellStyle(cs);
2条答案
按热度按时间ha5z0ras1#
试试这个:这里
mzillmmw2#
它已经有了换行符,但是单元格没有显示它。你需要设置一个单元格样式,并为单元格设置换行属性。
示例: