Aspose.Words for Java word转html,word表格内容显示不全

转换结果、原文件、转换前后对比图见附件。 使用Aspose.Words for Java 20.9版本。
word表格内容显示不全.zip (380.0 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);

@xiangma,

在使用Aspose.Words for Java的最新许可版本(20.9)进行初步测试之后,我们最终无法重现此问题。 请查看我们最终生成的以下HTMLFixed文档:

我们在测试中使用的Java代码:

Document doc = new Document("C:\\temp\\220020\\in.doc");
HtmlFixedSaveOptions options = new HtmlFixedSaveOptions();
options.setUseTargetMachineFonts(false);
options.setUseHighQualityRendering(true);
options.setEncoding(Charset.forName("UTF-8"));
options.setExportEmbeddedFonts(true);
options.setShowPageBorder(true);
doc.acceptAllRevisions();
doc.save("C:\\temp\\220020\\awjava-20.9.html", options);

请确保您确实使用了最新的20.9版本的Aspose.Words for Java,并且您提供了解决此问题的正确源DOC文件。