我正在尝试将文件从 .pdf 转换为 .doc 格式,我正在使用带有许可证和 Java 8 的 Aspose PDF 18.9.1 这个库。当我得到文档的转换时,PDF 文档有书签和链接文件,如果我单击书签并且链接不运行。这是我的代码:
// Load source PDF file
Document pdfDocument = new Document("example.pdf");
// Create DocSaveOptions object
DocSaveOptions saveOption = new DocSaveOptions();
// Set format DOC
saveOption.setFormat(DocSaveOptions.DocFormat.Doc);
// Save the resultant DOC file
pdfDocument.save("example.doc", saveOption);