Clear Comments from ODT Document Online or Manage via Android Apps
Develop powerful Android based ODT document annotation utility application. Code listed for managing comments of ODT file.
Remove ODT Annotations Online
- Import ODT file to delete comments by uploading it
- Do it by clicking inside the drop area via drag and drop of annotation app
- Depending on the size of ODT file and internet speed wait for few seconds
- Click the ‘Remove’ button to clear comments
- Download the file instantly
Remove ODT Document Comments via Android App
- Add library reference to android project
- Load Document via Document class object
- Get all comments from the all nodes by using getChildNodes and NodeType.COMMENT
- Invoke the clear method to delete all comments
- Call the save method to save the file.
Code : Delete Comments from ODT File
Document doc = new Document(getMyDir() + "removecomments.docx"); | |
NodeCollection comments = doc.getChildNodes(NodeType.COMMENT, true); | |
comments.clear(); |
Remove and Add ODT Comment Reply
- Add library reference to android project
- Load Document via Document class object
- Get comment using getChild
- Use removeReply for removing specified reply to this comment
- Use addReply for adding any reply to this comment
- Call the save method to save the file
Add Comments via Android App
- Add library reference to android project
- Create Document class object
- Use Comment to create the comment
- Use getParagraphs().add and getFirstParagraph().getRuns().add
- Call the save method to save the file with added comments
Code : Remove and Add Comment Reply from ODT File
Document doc = new Document(dataDir + "sourcefile.docx"); | |
Comment comment = (Comment) doc.getChild(NodeType.COMMENT, 0, true); | |
comment.removeReply(comment.getReplies().get(0)); | |
comment.addReply("John Doe", "JD", new Date(), "New reply"); | |
dataDir = dataDir + "comments-removed.docx"; | |
doc.save(dataDir); |
Code: Adding Comments
Document fle = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(fle); | |
builder.write("Some text is added."); | |
Comment cmt = new Comment(fle, "Author Name", "AN", new Date()); | |
builder.getCurrentParagraph().appendChild(comment); | |
cmt.getParagraphs().add(new Paragraph(fle)); | |
cmt.getFirstParagraph().getRuns().add(new Run(fle, "Comment text.")); | |
fle.save(filePath + "filewithComments.doc"); |
Develop ODT Document Annotation Android App
Need to develop a ODT annotation mobile app or utility to provide feedback, make suggestions, or collaborate with others on the document? With
Aspose.Words for Android via Java
a child API of
Aspose.Total for Android via Java
, any android developer can integrate the above API code within its document annotation application. Powerful android library allows programming any document annotation solution. Moreover it can support many popular formats including ODT format.
Android Library to Annotate ODT Files
- We host our Java packages in Maven repositories .
- Aspose.Words for Java is a common JAR file containing byte-code.
- Follow the step-by-step instructions on how to install Aspose.Words for Android via Java.
System Requirements
- Java SE 7 and more recent Java versions are supported.
- Separate package for Java SE 6 in case one is obliged to use outdated JRE.
- Java package is cross-platform and runs on all operating systems with JVM implementation.
- Operating systems include Microsoft Windows, Linux, macOS, Android and iOS.
For more details about optional package dependencies, such as JogAmp JOGL, Harfbuzz font engine, Java Advanced Imaging JAI please refer to [Product Documentation](https://docs.aspose.com/words/java/system-requirements/).