Aspose-Words文檔處理類庫

簡介

Aspose.Words for Java is a class library that enables your applications to perform a great range of document processing tasks. Aspose.Words supports DOC, DOCX, RTF, HTML, OpenDocument, PDF, XPS, EPUB and other formats. With Aspose.Words you can generate, modify, convert, render and print documents without using Microsoft Word®.

官網文檔: https://docs.aspose.com/display/wordsjava/Home
官網代碼示例: https://github.com/aspose-words/Aspose.Words-for-Java.git

同類別軟件: Apache POI

注:

  1. Aspose需要商業授權,POI開源免費
  2. 對於簡單的文檔關鍵字替換使用POI
  3. 複雜的表格編輯,使用Aspose中的標籤替換
  4. 對於替換參數(數字,文本,表格,圖片等),可封裝替換參數,增強代碼的適用性

代碼示例

Java類庫

Maven

<dependency>
    <groupId>com.aspose</groupId>
    <artifactId>aspose-words</artifactId>
    <version>19.5</version>
    <classifier>jdk17</classifier>
</dependency>

直接引入Jar

aspose-words-19.5-jdk17.jar

簡單示例

加載license

try {
    License license = new License();
    license.setLicense("Aspose.Words.lic");
    System.out.println("License set successfully.");
} catch (Exception e) {
    System.out.println("There was an error setting the license: " + e.getMessage());
}

Word->PDF

File file = new File("/Test-01.docx");

Document document = new Document(new FileInputStream(file));
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.getOutlineOptions().setHeadingsOutlineLevels(5);

OutputStream outputStream = new FileOutputStream("/Test-01.pdf");
document.save(outputStream,pdfSaveOptions);

書籤文本替換

document.getRange().getBookmarks().get(bookMakeName).setText(word);
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章