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");