Java에서 두 개의 Word 문서 비교
Jar 종속성 가져오기
방법 1: free library을 다운로드하고 압축을 풉니다. 그런 다음 Spire.Doc.jar 파일을 Java 애플리케이션에 종속성으로 추가합니다.
방법 2: 다음 구성을 pom.xml에 추가하여 maven 프로젝트에 jar 종속성을 직접 추가합니다.
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.doc.free</artifactId>
<version>5.1.0</version>
</dependency>
</dependencies>
샘플 코드
import com.spire.doc.Document;
public class CompareWordDocuments {
public static void main(String[] args) throws Exception {
//Create a Document instance
Document doc1 = new Document();
//Load the first Word document
doc1.loadFromFile("Doc1.docx");
//Create a Document instance
Document doc2 = new Document();
//Load the second Word document
doc2.loadFromFile("Doc2.docx");
//Compare the two Word documents
doc1.compare(doc2, "Author");
//Save the result to file
doc1.saveToFile("Compare.docx");
}
}
Reference
이 문제에 관하여(Java에서 두 개의 Word 문서 비교), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/carlwils/compare-two-word-documents-in-java-2hf6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)