XOM (XML Object Model) is a tree based java API for processing XML
by taking the best ideas from SAX and DOM. It is simple, fast and easy to use.
This requires the library xom-1.2.7.jar to be in classpath.
The following example shows removing all child elements from the parent.
//Reads and parses the XML
Document doc = builder.build(ins);
//Get student list
Elements students = doc.getRootElement().getChildElements(); for (int i = 0 ; i < students.size() ; i ++) {
students.get(i).removeChildren(); //Detaches all children from node
}