资 源 简 介
Xmlwise aims to make reading and writing of simple xml-files painless.
Xmlwise takes a parsed XML document and, assuming a simple xml-file format, extracts text nodes and attributes.
Here is how Xmlwise can help you access your XML structure:
The XML:
Edward Scissorhands Soundtrack Tim Burton Movies Secession Goth
With Xmlwise:
```
// Loading an xml file
XmlElement recordsNode = Xmlwise.loadXml("records.xml");
// Retrieving a sub element
XmlElement firstCD = recordsNode.get(0); // The first cd element.
// Retriving a single unique sub element
XmlElement title = firstCD.getUniqu