First stable version
First stable version that enables parsing and printing of XML documents:
XML xml = new XMLDocument("<hello><foo>hey</foo></hello>");
System.out.println(xml.nodes("/hello/foo").get(0));
will output:
<foo>hey</foo>
First stable version that enables parsing and printing of XML documents:
XML xml = new XMLDocument("<hello><foo>hey</foo></hello>");
System.out.println(xml.nodes("/hello/foo").get(0));
will output:
<foo>hey</foo>