Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 RichTextString 中强制换行?我想强制短线出现在一组新线上:一二三四 - 但如果它愿意,这个可以自然换行(当然)
如果你想要一个新行,你可以在任何你想要的地方使用 \n 。例如,在编写任何单元格值或单元格注释时,例如
Hello World test
您可以使用
sheet.getRow(2).getCell(2).setCellValue("Hello\nWorld\ntest");