着重号.docx (7.2 KB)
着重号.pdf (19.7 KB)
使用aspose java for words 23.9版本,通过以下代码,将word转换为pdf,但是word中的着重号(见着重号.docx)未被导出到pdf(见着重号.pdf)中,其中着重号为文字下方的小圆点。
/**
* 着重号生成及导出为PDF
*/
@Test
public void emphasisMarkExport(){
String wordPath = "D:\\05_temp\\文档测试\\着重号.docx";
String pdfPath = "D:\\05_temp\\文档测试\\着重号.pdf";
AsposeUtil.setLicense();
try {
System.out.println("====================导出着重号 开始==============");
LoadOptions loadOptions = new LoadOptions();
{
loadOptions.getLanguagePreferences().setDefaultEditingLanguage(EditingLanguage.CHINESE_PRC);
}
Document document = new Document(wordPath,loadOptions);
document.save(pdfPath);
System.out.println("====================导出着重号 结束==============");
}catch (Exception e){
}
}
麻烦您帮忙看看是什么问题造成的,用什么办法可以解决,谢谢。