Aspose.Words for Java word转html,表格边框不显示

边框不显示.zip (130.5 KB)

转换结果、原文件、转换前后对比图见附件。 使用Aspose.Words for Java 20.1版本。
转换代码如下:
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.3测试了该方案,但是没有发现共享问题。 因此,请使用 Aspose.Words for Java 20.3

非常感谢,已验证,正常了。