DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
XPath: Convert Nodeset To Nodelist
// Convert nodeset to nodelist
XPath xpath = XPathFactory.newInstance().newXPath();
NodeList nodes = (NodeList) xpath.evaluate("//Rule", rootNode, XPathConstants.NODESET);





