|
Project Information
Featured
Downloads
Links
|
XML Tool OverviewXMLTool is a very simple Java library to be able to do all sorts of common operations with an XML document. As a Java developer, I often end up writing the always the same code for processing XML, transforming, ... So i decided to put all in a very easy to use class using the Fluent Interface pattern to facilitate XML manipulations. XMLTag tag = XMLDoc.newDocument(false)
.addDefaultNamespace("http://www.w3.org/2002/06/xhtml2/")
.addNamespace("wicket", "http://wicket.sourceforge.net/wicket-1.0")
.addRoot("html")
.addTag("wicket:border")
.gotoRoot().addTag("head")
.addNamespace("other", "http://other-ns.com")
.gotoRoot().addTag("other:foo");
System.out.println(tag.toString());
FeaturesWith XML Tool you will be able to quickly:
DownloadYou can download XML Tool versions:
<groupId>com.mycila.xmltool</groupId> <artifactId>xmltool</artifactId> <version>X.Y</version> ManualPlease see Featured Wiki Pages (on the right) for more information. I strongly suggest you also checkout the source to see all the exemples in the unit tests, as you read the Manual. Quick sampleCheck the Manual for samples. You can also check in the Maven License Plugin project when we load the additional header definition file Evolution - Participate !If you think of useful methods to add, please post an issue so that we implement it. Other interesting projects
|