在我的 xml 中可以有空标签,如</title>
.
问题是当我解析 xml 时,当我到达 xml 中的这一行时,我得到了空指针异常。
我应该如何在我的解析文件中检查这样的标签?
ArrayList<String>textcomment = new ArrayList<String>();
for(int i = 0;i<nl.getLength();i++)
{
Element e = (Element)nl.item(i);
// crash on this string find first time a value and second time find </no_of_comments>
String noOfcomment = e.getElementsByTagName("no_of_comments").item(0).getFirstChild ().getNodeValue();
aryNoOfcomment.add(i, noOfcomment);
}