我可以使用以下代码提取.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();
现在我想在特定页面上提取图片,但无法找到解决方法。我们怎么做呢?