List of usage examples for org.dom4j.io XPPReader read
public Document read(char[] text) throws DocumentException, IOException, XmlPullParserException
Reads a Document from the given array of characters
From source file:org.dom4j.samples.PullParserDemo.java
License:Open Source License
protected Document parse(String xmlFile) throws Exception { XPPReader reader = new XPPReader(); return reader.read(xmlFile); }