作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题涉及使用 HWPF 获取 Word 文档的缩略图:
get thumbnail of word in java using Apache POI
我想使用 XWPF 来完成此操作 - 用于 word xml 文档 (.docx) 的 Apache POI API。没有 getThumbnail() 方法或类似方法。我怎样才能做到这一点?我想使用“另存为...”对话框中的“生成缩略图”选项提取由 Word 生成的嵌入缩略图 - 这对于使用 HWPF 的 .doc 文档效果很好。
最佳答案
您需要升级 Apache POI 版本!您需要使用Apache POI 3.15 beta 2 or newer
在这些较新的版本中,您会在 POIXMLProperties 上找到一些与缩略图相关的方法。 ,如getThumbnailFilename()和 getThumbnailImage()
要将缩略图保存到文件中,使用 XWPF,您需要执行以下操作:
XWPFDocument wordDocument = new XWPFDocument(new FileInputStream(docxFile));
POIXMLProperties props = workDocument.getProperties();
String thumbnail = props.getThumbnailFilename();
if (thumbnail == null) {
// No thumbnail
} else {
FileOutputStream fos = new FileOutputStream("c:\\temp\\"+thumbnail);
IOUtils.copy(props.getThumbnailImage(), fos);
}
关于java - 使用 Apache POI 和 XWPF 在 java 中获取单词的缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37028935/
我有一个具有可变数量子元素的固定大小的 div。我不知道 children 的大小。目标是缩小它们以适合父级。 例子: .parent { width: 100px; height: 100p
我是一名优秀的程序员,十分优秀!