Follow this article to track changes in Word using Java. It has the details to set the IDE, a list of steps for writing the application and a sample code showing how to activate track changes in Word using Java. You can activate and deactivate the tracking multiple times while editing a Word document.
Steps to Track Changes in Word DOC using Java
- Set the IDE to use Aspose.Words for Java to track changes
- Create a blank Word Document for adding sample content to track editing
- Create some test contents, such as a table and a cell
- Enable the tracking feature by calling the startTrackRevisions() method
- Add some more content to experience the tracking of changes
- Save the output with the tracking feature on
These steps briefly define how to track the changes in Word using Java. Start the process by creating or loading a Word file, editing the document, and calling the startTrackRevisions() method to activate the tracking. Add some more content before saving the document to observe the comments on the right border of the Word file.
Code to Turn on Track Changes in Word using Java
This code snippet demonstrates how to apply Microsoft Word track changes using Java. You can call acceptAllRevisions() at any time to accept the revision at any stage. To view all the revisions in the document, call the getRevisions() method.
This article has taught us how to work with tracking changes, deactivate the tracking, fetch the revisions, and check if tracking is in place or not. To sign a Word document, refer to the article on How to digitally sign a Word document using Java.