我正在使用 apache poi 3.8 将值写入 word 模板。我用所需的值替换 word 文件(键)中的特定字符串,例如 word 文档有一个包含键 %Entry1% 的段落,我想用“Entry text line1 \nnew line”替换它。在我的实现中,所有替换的键和值都存储在 Map 中。
Map<String, String> replacedElementsMap;
HWPFDocument 的代码是:
Range range = document.getRange();
for(Map.Entry<String, String> entry : replacedElementsMap.entrySet()) {
range.replaceText(entry.getKey(), entry.getValue());
}
此代码工作正常,我只需将 \n 放入输入字符串中即可换行。但是我找不到 XWPFDocument 的类似方法。我当前的 XWPFDocument 代码是:
List<XWPFParagraph> xwpfParagraphs = document.getParagraphs();
for(XWPFParagraph xwpfParagraph : xwpfParagraphs) {
List<XWPFRun> xwpfRuns = xwpfParagraph.getRuns();
for(XWPFRun xwpfRun : xwpfRuns) {
String xwpfRunText = xwpfRun.getText(xwpfRun.getTextPosition());
for(Map.Entry<String, String> entry : replacedElementsMap.entrySet()) {
if (xwpfRunText != null && xwpfRunText.contains(entry.getKey())) {
xwpfRunText = xwpfRunText.replaceAll(entry.getKey(), entry.getValue());
}
}
xwpfRun.setText(xwpfRunText, 0);
}
}
现在“\n”-字符串不会导致回车,如果我使用, xwpfRun.addCarriageReturn();
我只会在段落后得到一个换行符。我应该如何在 xwpf 中正确创建新行?