将 DOC DOCX 转换为 PDF
Contents
[
Hide
]
将包括 DOC 或 DOCX 在内的 Word 文档转换为 Java 中的其他格式是非常常见的要求。这对于 Aspose.Words 来说非常简单,它是 Java 的 Conholdate.Total 的一部分。
**在 Java 中将 DOC DOCX 转换为 PDF **
要将 DOCX 或任何其他 MS Word 格式转换为 PDF,您可以按照以下简单步骤操作。
- 在 Java 中加载文档
- 将其保存为 PDF
以下代码详细显示了这些步骤。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete example, please visit https://docs.conholdate.com/java/convert-doc-docx-to-pdf/ | |
// Load the document. | |
com.aspose.words.Document doc = new com.aspose.words.Document("Input.docx"); | |
// Save the document as PDF. | |
doc.save("SaveToPdf.pdf"); |