我們的 Java SDK 旨在為您提供最準確的結果,即使比較本身就是一個複雜的功能。
有時你需要確定 PDF 格式的文檔沒有被改變,如果有,你需要找出有什麼不同。只需使用我們的 Java diff 工具來比較兩個 PDF 文件並查找整個單詞或單個字符的差異。此外,如果一個單詞中只有一個字符發生了變化,則該單詞將被標記為完全更改。
現在,您不再需要花時間手動比較 PDF 文檔,您可以快速找到哪怕是很小的更改,並以方便的格式將此類差異導出到文檔中。
查看我們使用 Java SDK 比較 PDF 文件的解決方案如何工作。為此,加載要比較的 PDF 文件並選擇導出文件格式 - 比較後會自動加載。
請注意,在調用比較方法之前,您需要接受比較文檔中的所有修訂,如我們的示例所示:
import com.aspose.words.cloud.*;
ApiClient apiClient = new ApiClient("####-####-####-####-####", "##################", null);
WordsApi wordsApi = new WordsApi(apiClient);
String fileName1 = "Input1.pdf";
String fileName2 = "Input2.pdf";
String fileResult = "Output.pdf";
// 將文檔上傳到雲存儲。
byte[] firstDocumentContent = Files.readAllBytes(Paths.get(fileName1).toAbsolutePath());
UploadFileRequest uploadFirstFileRequest =
new UploadFileRequest(firstDocumentContent, fileName1, null);
wordsApi.uploadFile(uploadFirstFileRequest);
byte[] secondDocumentContent = Files.readAllBytes(Paths.get(fileName2).toAbsolutePath());
UploadFileRequest uploadSecondFileRequest =
new UploadFileRequest(secondDocumentContent, fileName2, null);
wordsApi.uploadFile(uploadSecondFileRequest);
// 比較雲中的文檔。
CompareData compareDataOptions = new CompareData();
compareDataOptions.setAuthor("author");
compareDataOptions.setFileReference(new FileReference(fileName2));
CompareDocumentRequest compareDocumentRequest =
new CompareDocumentRequest(fileName1, compareDataOptions,
null, null, null, null, null, fileResult, null);
wordsApi.compareDocument(compareDocumentRequest);
// 從雲存儲下載結果文檔。
DownloadFileRequest downloadFileRequest = new DownloadFileRequest(fileResult, null, null);
byte[] downloadFileResult = wordsApi.downloadFile(downloadFileRequest);
Files.write(Paths.get(fileResult), downloadFileResult.values().iterator().next());
使用 Maven 構建自動化工具安裝 'Aspose.Words Cloud SDK for Java' 。
將此依賴項添加到項目的 POM 中:
作為替代方案,您可以從 GitHub 克隆 Aspose.Words Cloud SDK for Java 源代碼並在您的項目中使用它。請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。
請參閱 Repository Documentation 以查看詳細信息。