dom4j - Quick Start Guide
Parsing XML One of the first things you'll probably want to do is to parse an XML document of some kind. This is easy to do in dom4j. The following code demonstrates how to this. import java.net.URL; import org.dom4j.Document; import org.dom4j ......