Skill/spring
java poi 매뉴얼
진열사랑
2023. 11. 21. 11:09
https://poi.apache.org/components/spreadsheet/quick-guide.html#NewLinesInCells
이 중 엑셀 다운로드시 셀의 newline 개행을 하고 싶을 때..
셀 값에 \n을 넣고
셀 스타일에 다음과 같이 하면 된다.
cellStyle = sxssWorkbook.createCellStyle();
cellStyle.setWrapText(true);