如何在页面上读取.doc文件并在该页面上提取图像?

时间:2014-12-24 08:20:01

标签: java apache-poi document

我可以使用以下代码提取.doc文件中的所有可用图片 -

doc = new HWPFDocument(new FileInputStream(new File(this.file.getAbsolutePath())));
List<org.apache.poi.hwpf.usermodel.Picture> pictureList = new ArrayList<>();
pictureList = doc.getPicturesTable().getAllPictures();

以及使用以下代码段的总页数 -

int pages = doc.getSummaryInformation().getPageCount();

现在我想在特定页面上提取图片,但无法找到解决方法。我们怎么做呢?

0 个答案:

没有答案