Compare two DOC files in Java using our difference checker. With our high-fidelity Java API, you can find the difference between compared DOC documents and export the results to a convenient file format.
With this native Java API, you can easily compare DOC documents and obtain the differences in the desired output format. Our Java library is fully self-contained and does not rely on any external tools or services. It eliminates the need for external dependencies, providing a comprehensive set of DOC processing functionalities within a single Java package.
On this landing page, we bring you a live demo of the DOC comparison in action, coupled with an illustrative Java example. It compares the contents of DOC documents both at the character level and at the word level. Even if only a single character has been changed, the entire word will be marked as modified. Experience firsthand how easy it is to compare two documents by uploading DOC files to the interface, choosing the desired output format, and getting the differences between DOC documents marked with 100% accuracy.
Sometimes it may not be clear if a DOC file has been modified, and manually comparing two versions of a document can be a daunting task. Conversely, there are times when you're sure the DOC document has changed, but visually identifying the updated sections becomes overwhelming. The DOC comparison is an increasingly sought-after procedure, particularly within automated document workflows. Let's explore typical scenarios where automated DOC comparison can be highly valuable:
As you can see, programmatic DOC comparison offers immense benefits in various domains, enabling streamlined workflows, enhanced collaboration, and increased productivity. With this Java API, you have the power to harness these advantages seamlessly within your Java projects. Try out our live demo by uploading two DOC documents, selecting the target format to highlight the differences, and examining the Java code example. This Java snippet demonstrates how to find differences between DOC files and save the results in the required format.
An important point: the compared DOC documents should not have revisions before calling the comparison method. You must first accept all the revisions.
// Repository path: https://releases.aspose.com/java/repo/
// Maven, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>ver</version>
<classifier>jdk17</classifier>
</dependency>
Copy
// Repository path: https://releases.aspose.com/java/repo/
// Gradle, where 'ver' - Aspose.Words version number, for example, 24.4.
compile(group: 'com.aspose', name: 'aspose-words', version: 'ver', classifier: 'jdk17')
Copy
// Repository path: https://releases.aspose.com/java/repo/
// Ivy, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency org="com.aspose" name="aspose-words" rev="ver">
<artifact name="aspose-words" m:classifier="jdk17" ext="jar"/>
</dependency>
Copy
// Repository path: https://releases.aspose.com/java/repo/
// Sbt, where 'ver' - Aspose.Words version number, for example, 24.4.
libraryDependencies += "com.aspose" % "aspose-words" % "ver"
Copy
import com.aspose.words.*;
Document docA = new Document("Input1.doc");
Document docB = new Document("Input2.doc");
// There should be no revisions before comparison.
docA.acceptAllRevisions();
docB.acceptAllRevisions();
docA.compare(docB, "Author Name", new Date());
docA.save("Output.doc");
We host our Java packages in Maven repositories. 'Aspose.Words for Java' is a common JAR file containing byte-code. Please follow the step-by-step instructions on how to install it to your Java developer environment.
Java SE 7 and more recent Java versions are supported. We also provide a separate package for Java SE 6 in case you are obliged to use this outdated JRE.
Our Java package is cross-platform and runs on all operating systems with JVM implementation, including Microsoft Windows, Linux, macOS, Android and iOS.
For information on optional package dependencies, such as JogAmp JOGL, Harfbuzz font engine, Java Advanced Imaging JAI, please refer to Product Documentation.
You can perform compare operation for other file formats: