原文链接:
[url]http://edu.codepub.com/2010/0508/22560.php[/url]
先说前两个方法,是从网上看来的。摘抄如下:
xml代码example:
再说前三种方法,也是从网上看来的。http://edu.codepub.com/2010/0508/22559.php
<report xmlns="http://www.eclipse.org/birt/2005/design" version="3.2.15" id="1">
<list-property name="cssStyleSheets">
<structure>
<property name="fileName">D: eport.css</property>
</structure>
</list-property>
</report>
第一个方案.设置你的xpath的命名空间setNamespaceURIs
public class TransferXML {
public static void main(String[] args) throws Exception{
Map map = new HashMap();
map.put("design","http://www.eclipse.org/birt/2005/design");
SAXReader saxReader = new SAXReader();
File file = new File("D:\test.xml");
Document document = saxReader.read(file);
XPath x = document.createXPath("//design:list-property");
x.setNamespaceURIs(map);
List nodelist = x.selectNodes(document);
System.out.println(nodelist.size());
}
}
第二个解决方案:设置你的DocumentFactory()的命名空间 setXPathNamespaceURIs
public class TransferXML {
public static void main(String[] args) throws Exception{
Map map = new HashMap();
map.put("design","http://www.eclipse.org/birt/2005/design");
SAXReader saxReader = new SAXReader();
File file = new File("D:\test.xml");
saxReader.getDocumentFactory().setXPathNamespaceURIs(map);
Document document = saxReader.read(file);
List tmp = document.selectNodes("//design:list-property");
System.out.println(tmp.size());
}
}
第三种方法:本人用的,最笨也是最通用的方法,就是不使用开发环境给你提供的一系列对象,而是用XPath语法中自带的local-name() 和 namespace-uri() 指定你要使用的节点名和命名空间。
当你遇到使用xslt来样式化xml时,就知道这个笨方法的好处了:
public class TransferXML {
public static void main(String[] args) throws Exception
SAXReader saxReader = new SAXReader();
File file = new File("D:\test.xml");
Document document = saxReader.read(file);
List tmp = document.selectNodes("//*[local-name()='report' and namespace-uri()='http://www.eclipse.org/birt/2005/design']/* [local-name()='list-property']");
System.out.println(tmp.size());
}
}
第四种方法: 本人曾经和别人探讨时用到的,当只需要一个元素时,也可以不用设置命名空间。
用element的element方法取一个子元素或elementIterator方法取多个元素。当只要获取属性时,可以用
document的selectNodes方法。
public class TransferXML {
public static void main(String[] args) throws Exception
SAXReader saxReader = new SAXReader();
File file = new File("D:\test.xml");
Document document = saxReader.read(file);
Element root = document.getRootElement();
Element ele = root.element("report");
System.out.println(ele.getName());
List list = document.selectNodes("//@name");
System.out.println(list.size());
}
}
还有一个方法:
如果在程序中命名空间没有什么作用,可以将命名空间去掉。
比如:
[url]http://edu.codepub.com/2010/0508/22560.php[/url]
先说前两个方法,是从网上看来的。摘抄如下:
xml代码example:
再说前三种方法,也是从网上看来的。http://edu.codepub.com/2010/0508/22559.php
<report xmlns="http://www.eclipse.org/birt/2005/design" version="3.2.15" id="1">
<list-property name="cssStyleSheets">
<structure>
<property name="fileName">D: eport.css</property>
</structure>
</list-property>
</report>
第一个方案.设置你的xpath的命名空间setNamespaceURIs
public class TransferXML {
public static void main(String[] args) throws Exception{
Map map = new HashMap();
map.put("design","http://www.eclipse.org/birt/2005/design");
SAXReader saxReader = new SAXReader();
File file = new File("D:\test.xml");
Document document = saxReader.read(file);
XPath x = document.createXPath("//design:list-property");
x.setNamespaceURIs(map);
List nodelist = x.selectNodes(document);
System.out.println(nodelist.size());
}
}
第二个解决方案:设置你的DocumentFactory()的命名空间 setXPathNamespaceURIs
public class TransferXML {
public static void main(String[] args) throws Exception{
Map map = new HashMap();
map.put("design","http://www.eclipse.org/birt/2005/design");
SAXReader saxReader = new SAXReader();
File file = new File("D:\test.xml");
saxReader.getDocumentFactory().setXPathNamespaceURIs(map);
Document document = saxReader.read(file);
List tmp = document.selectNodes("//design:list-property");
System.out.println(tmp.size());
}
}
第三种方法:本人用的,最笨也是最通用的方法,就是不使用开发环境给你提供的一系列对象,而是用XPath语法中自带的local-name() 和 namespace-uri() 指定你要使用的节点名和命名空间。
当你遇到使用xslt来样式化xml时,就知道这个笨方法的好处了:
public class TransferXML {
public static void main(String[] args) throws Exception
SAXReader saxReader = new SAXReader();
File file = new File("D:\test.xml");
Document document = saxReader.read(file);
List tmp = document.selectNodes("//*[local-name()='report' and namespace-uri()='http://www.eclipse.org/birt/2005/design']/* [local-name()='list-property']");
System.out.println(tmp.size());
}
}
第四种方法: 本人曾经和别人探讨时用到的,当只需要一个元素时,也可以不用设置命名空间。
用element的element方法取一个子元素或elementIterator方法取多个元素。当只要获取属性时,可以用
document的selectNodes方法。
public class TransferXML {
public static void main(String[] args) throws Exception
SAXReader saxReader = new SAXReader();
File file = new File("D:\test.xml");
Document document = saxReader.read(file);
Element root = document.getRootElement();
Element ele = root.element("report");
System.out.println(ele.getName());
List list = document.selectNodes("//@name");
System.out.println(list.size());
}
}
还有一个方法:
如果在程序中命名空间没有什么作用,可以将命名空间去掉。
比如:
String strWithoutNamespace=str.replace("xmlns=\"http://intfcenter.gxtelco.com\"", "");