Hello,
Does anyone have a java example of converting docx to xml?
Im not sure how to get started.
Thank You in advance.
Hello,
com.aspose.words.Document doc = new com.aspose.words.Document(“Input.docx");
//To save the document to Office Open XML WordprocessingML format
doc.save("Output.xml", com.aspose.words.SaveFormat.FLAT_OPC);
//To save the document to Microsoft Word 2003 WordprocessingML format
//doc.save("Output.xml", com.aspose.words.SaveFormat.WORD_ML);