从rss读取URL

时间:2012-02-18 12:30:27

标签: java xml

我正在尝试从RSS中读取网址。

<story>
<title>
 http://www.someurl.com//modules.php?name=News&file=article&sid=622
</title>
</story>

我进入了rssfeed var“&amp; amp”而不是&amp ;. 我正在执行此代码:

StringReader rssFeedStringReader = new StringReader(rssFeed);
InputSource inputSource = new InputSource(rssFeedStringReader);  
DocumentBuilder builder = factory.newDocumentBuilder();
Document document =  builder.parse(inputSource);
articleNodes = (NodeList)expr.evaluate(document, XPathConstants.NODESET);
Node articleNode = articleNodes.item(i).getFirstChild();
Node articleTitle = articleNode.getFirstChild();
String title = articleTitle.getNodeValue();

但我只得到: 标题var。

中的http://www.someurl.com//modules.php?name=News

可能是什么问题?

0 个答案:

没有答案