public class XParseTest { public static void main(String[] args) throws XmlException, OpenXML4JException, IOException { File file=new File("e:\\testing\\new.docx"); FileInputStream fs = new FileInputStream(file); OPCPackage d = OPCPackage.open(fs); XWPFWordExtractor xw = new XWPFWordExtractor(d); System.out.println(xw.getText()); } }
this will parse the docx file ...
source share