2

我的 XML 结构是这样的:

<rss>
     <channel>
         <yweather:location city="Paris" region="" country="France"/>
         <yweather:units temperature="C" distance="km" pressure="mb" speed="km/h"/>
         <yweather:wind chill="-1" direction="40" speed="11.27"/>
         <yweather:atmosphere humidity="87" visibility="9.99" pressure="1015.92" rising="0"/>
         <yweather:astronomy sunrise="8:30 am" sunset="4:54 pm"/>
     </channel>
</rss>

当我尝试使用 dom4j 解析它时

 SAXReader xmlReader = createXmlReader();
 Document doc = null;
 doc = xmlReader.read( inputStream );//inputStream is input of function
 log.info(doc.valueOf("/rss/channel/yweather:location/@city"));

 private SAXReader createXmlReader() {
    Map<String,String> uris = new HashMap<String,String>();
    uris.put( "yweather", "http://xml.weather.yahoo.com/ns/rss/1.0" );
    uris.put( "geo", "http://www.w3.org/2003/01/geo/wgs84_pos#" );

    DocumentFactory factory = new DocumentFactory();
    factory.setXPathNamespaceURIs( uris );

    SAXReader xmlReader = new SAXReader();
    xmlReader.setDocumentFactory( factory );
    return xmlReader;
}

但是我在 cmd 中什么也没有,但是当我打印 doc.asXML() 时,我的 XML 结构打印正确!

4

2 回答 2

0

@D3GAN 你写的一切都很好。代码没有问题。我刚试过。问题是你的代码中没有所有必要的库。

您应该将 jaxen 库添加到您的类路径中,您可能会收到 NoClassdefFoundError。原始dom4j发行版包含 jaxen.jar(在依赖文件夹中)。

我犯了同样的错误。我刚刚添加了 dom4j 并且代码不起作用。我的文件是空的。但是当我添加 jaxen 依赖时,它开始正常工作。

如果你不知道如何安装 JAR 文件,你可以去这里: http: //www.wikihow.com/Add-JARs-to-Project-Build-Paths-in-Eclipse-%28Java%29

于 2014-04-25T19:22:38.660 回答
0

您在 XML 和 XPath 中都有一个未声明的名称空间前缀。

xmlns:yweather向您的 XML添加适当的声明,并使用setNamespaceURIs使其可用于您的 XPath。

于 2012-12-08T10:27:24.153 回答