标签: java apache apache-poi
我正在尝试在整个Word文档中替换一些文本。我通过遍历XWPFRun运行来完成此操作,在大多数情况下,我可以使用 run.setText(replacedText,0)替换文本。但是,在某些情况下,我要替换的文本位于run.getPictureText()中,而不是run.getText()中。不幸的是,run.getPictureText()没有类似run.getText()的run.setText()的run.setPictureText()函数。有没有办法替换图片文字?