java – 查找XML中特定标记名称是否存在元素

我有一个XML文件,其中一些子标记(子节点元素)是可选的.
例如

<part>
   <note>
       </rest>
   </note>

   <note>
       <pitch></pitch>
   </note>

   <note>
       <pitch></pitch>
   </note>
</part>

但是当我通过标签读取XML文件时,它会抛出NullPointerException – 因为一些子标签是可选的(例如上面的例子中的休息和音调).我怎样才能过滤掉这个?我无法找到任何方法来查找特定标记名称是否存在元素.即使我有条件检查getElementsByTagName(“tag-name”)方法是否返回NULL – 仍然它进入条件体并显然抛出异常.
我怎么解决这个问题?

java代码是:

if(fstelm_Note.getElementsByTagName("rest")!=null){
    if(fstelm_Note.getElementsByTagName("rest")==null){
        break;
    }
    NodeList restElmLst = fstelm_Note.getElementsByTagName("rest");
    Element restElm = (Element)restElmLst.item(0);
    NodeList rest = restElm.getChildNodes();

    String restVal = ((Node)rest.item(0)).getNodeValue().toString();

}else if(fstelm_Note.getElementsByTagName("note")!=null){
    if(fstelm_Note.getElementsByTagName("note")==null){
        break;
    }

    NodeList noteElmLst = fstelm_Note.getElementsByTagName("note");
    Element noteElm = (Element)noteElmLst.item(0);

    NodeList note = noteElm.getChildNodes();
    String noteVal = ((Node)note.item(0)).getNodeValue().toString();
}

任何见解或建议都表示赞赏.
提前致谢.

解决方法:

我有同样的问题(使用getElementsByTagName()来获取XML文件中的“可选”节点),所以我可以通过经验告诉如何解决它.事实证明,当没有找到匹配的节点时,getElementsByTagName不会返回null;相反,它返回零长度的NodeList对象.

正如您可能猜到的那样,在尝试获取其内容之前检查XML文件中是否存在节点的正确方法类似于:

NodeList nl = element.getElementsByTagName("myTag");
if (nl.getLength() > 0) {
    value = nl.item(0).getTextContent();
}

如果永远找不到标记,请务必指定“默认”值.

上一篇:react:虚拟DOM(Virtual DOM)


下一篇:Git学习(01)_基本命令