有时我有一个 XML:
<resource
xsi:schemaLocation="http://www.test.com/resource http://test.com/schema/resource
xmlns="http://www.test.com/resource"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
...
</resource>
有时没有命名空间 URI,即
<resource>
...
</resource>
如何获取resource
任何命名空间 URI 的所有子元素?
我用来处理元素并以这种方式nu.xom.Element
构建:nu.xom.Document
nu.xom.Builder parser = new nu.xom.Builder();
return parser.build( new ByteArrayInputStream(xmlString.getBytes()) );