如何使用apache POI for word在文本上添加删除线

时间:2018-01-25 22:02:23

标签: java ms-word apache-poi

我无法找到使用Apache POI为单词在文本上添加删除线的参考。

我正在尝试构建一个word文档,我需要根据逻辑来检查一些关键字。因此,我打击的关键字应该看起来像这样,

关键字striked

请协助。

1 个答案:

答案 0 :(得分:2)

取自this page;看起来您需要做的就是在setStrikeThrough()对象上使用XWPFRun方法并将其设置为true,如下所示:

XWPFRun textRun = paragraph.createRun();
textRun.setStrikeThrough(true);

修改

不推荐使用setStrike()方法。新方法是setStrikeThrough()Here是文档的链接。