Skip to content

Releases: jcabi/jcabi-xml

First stable version

29 Oct 06:01
Compare
Choose a tag to compare

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>