私のxmlには、のような空のタグが含まれている可能性があります</title>
。
問題は、xmlを解析するときに、xmlのこの行に到達すると、nullポインター例外が発生することです。
解析ファイルでこのようなタグを確認するにはどうすればよいですか?
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);
}