Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 xml 中可能有空标签,例如
问题是当我解析 xml 时,当我到达 xml 中的这一行时,我得到了空指针异常。我应该如何在我的解析文件中检查这样的标签?请帮帮我。
在您的代码中添加空检查...如下所示...
if(employees.item(k).getFirstChild() != null) { employees.item(k).getFirstChild().getNodeValue() }