word文档一部分内容无法显示.zip (237.6 KB)
转换代码如下:
Document document = new Document(sourceFileName);
HtmlFixedSaveOptions options = new HtmlFixedSaveOptions();
options.setUseTargetMachineFonts(false);
options.setUseHighQualityRendering(true);
options.setEncoding(Charset.forName(“UTF-8”));
options.setExportEmbeddedFonts(true);
options.setShowPageBorder(true);
document.acceptAllRevisions();
document.save(targetFileName, options);
在使用Aspose.Words for Java的最新许可版本(20.12)进行初步测试之后,我们最终无法重现此问题。 最后,我们使用以下简单的Java代码将DOCX转换为HTML Fixed格式:
Document document = new Document("C:\\temp\\223244\\in.docx");
HtmlFixedSaveOptions options = new HtmlFixedSaveOptions();
options.setUseTargetMachineFonts(false);
options.setUseHighQualityRendering(true);
options.setEncoding(Charset.forName("UTF-8"));
options.setExportEmbeddedFonts(true);
options.setShowPageBorder(true);
document.acceptAllRevisions();
document.save("C:\\Temp\\223244\\awjava-20.12.html", options);
- 附件:Aspose.Words 20.12 generated HTML file.zip (45.2 KB)
我们建议您升级到Aspose.Words for Java的最新版本。