1. 首先在需要强制换行的单元格里使用poi的样式,并且把样式设定为自动换行
# HSSFCellStyle cellStyle=workbook.createCellStyle()
# cellStyle.setWrapText(true)
# cell.setCellStyle(cellStyle)
2. 其次是在需要强制换行的单元格,使用\就可以实再强制换行
1. HSSFCell cell = row.createCell((short)0)
2. cell.setCellStyle(cellStyle) cell.setCellValue(new HSSFRichTextString("hello\r\n world!"))
这样就能实现强制换行,
换行后的效里是单元格里强制换行
hello
world!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)