我有一段 XML 看起来像这样:
<entry>
<id>tag:example.com,2005:Release/343597</id>
<published>2012-04-10T11:29:19Z</published>
<updated>2012-04-10T12:04:41Z</updated>
<link type="text/html" href="http://example.com/projects/example1" rel="alternate"/>
<title>example1</title>
</entry>
我需要http://example.com/projects/example1
从这个块中获取链接。我不知道该怎么做。要获得项目的标题,我使用以下代码:
String title1 = children.item(9).getFirstChild().getNodeValue();
children
块的getChildNodes()
对象在哪里<entry> </entry>
。但是当我尝试以类似方式NullPointerExceptions
获取节点的节点值时,我不断得到。<link>
我看到<link>
节点的 XML 代码不同,我不确定它的值是什么......请指教!