我正在尝试从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可能是什么问题?