如何在PDFbox JAVA中添加换行符
我正在生成一个包含一些注释、单元格、表格的 PDF 文件...我在 JAVA 中使用 PDFbox,
我想在我的字符串中添加一个换行符,它称为“escComments”,它包含一个注释数组。
我尝试过“\n”、“\r”、“System.getProperty(“line.separator”)”,但没有任何效果。
这是我的代码:
if (action.getCloseComment() != null) {
String escComments = action.getCloseComment();
escComments = escapeChars(escComments);
row.put( "COMENTARIOS", escComments);
}
我想为来自 getCloseComment() 的每个评论添加换行符
im generating a PDF file with some comments, cells, tables... Im working with PDFbox in JAVA
I would like to add a line break to my string which its called "escComments" and it contain an array of Comments.
I've tried "\n", "\r", "System.getProperty(“line.separator”)" and nothing works.
This is my code:
if (action.getCloseComment() != null) {
String escComments = action.getCloseComment();
escComments = escapeChars(escComments);
row.put( "COMENTARIOS", escComments);
}
I would like to add a line break for each comment comming from getCloseComment()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试“moveTextPositionByAmount”来分割字符串并将文本位置移动到下一行。
you can try 'moveTextPositionByAmount' to split string and move the text position to next line.