Mar*_*hal 3 java dom namespaces
为什么getNamespaceURI()总是返回null?printNSInfo方法有什么问题
public static void main(String[] args) {
Document input = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(args[0]);
Element root = input.getDocumentElement();
printNSInfo(root);
}
private static void printNSInfo(Node node) {
if (node.getNodeType() == Node.ELEMENT_NODE) {
if (node.getNamespaceURI() != null) {
System.out.println("Element Name:" + node.getNodeName());
System.out.println("Local Name:" + node.getLocalName());
System.out.println("Namespace Prefix:" + node.getPrefix());
System.out.println("Namespace Uri:" + node.getNamespaceURI());
System.out.println("---------------");
}
if (node.hasAttributes()) {
NamedNodeMap map = node.getAttributes();
int len = map.getLength();
for (int i = 0; i < len; i++) {
Node attr = map.item(i);
if (attr.getNamespaceURI() != null) {
printNSInfo(attr);
}
}
}
Node child = node.getFirstChild();
System.out.println(child);
while (child != null) {
printNSInfo(child);
child = child.getNextSibling();
}
} else if (node.getNodeType() == Node.ATTRIBUTE_NODE) {
System.out.println("Attribute Name:" + node.getNodeName());
System.out.println("Local Name:" + node.getLocalName());
System.out.println("Namespace Prefix:" + node.getPrefix());
System.out.println("Namespace Uri:" + node.getNamespaceURI());
System.out.println("---------------");
}
}
Run Code Online (Sandbox Code Playgroud)
输入的xml文件为:
<a:NormalExample xmlns:a="http://sonormal.org/" xmlns:b="http://stillnormal.org/">
<a:AnElement b:anAttribute="text"> </a:AnElement>
</a:NormalExample>
Run Code Online (Sandbox Code Playgroud)
当我在Eclipse中调试时,node.getNamespaceURI()总是返回null,我在哪里错?
从这个,你需要设置一个标志factory.setNamespaceAware(true),就像这样:
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setNamespaceAware(true);
DocumentBuilder builder = factory.newDocumentBuilder();
Document input = builder.parse(args[0]);
Element root = input.getDocumentElement();
printNSInfo(root);
Run Code Online (Sandbox Code Playgroud)
输出为:
Element Name:a:NormalExample
Local Name:NormalExample
Namespace Prefix:a
Namespace Uri:http://sonormal.org/
---------------
...continue...
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2163 次 |
| 最近记录: |