Java中xml集合怎么是否为判空

avatar
作者
筋斗云
阅读量:3

在Java中判断xml集合是否为空,可以使用以下方法:

  1. 使用XPath表达式进行判断:
XPath xPath = XPathFactory.newInstance().newXPath(); String expression = "count(/root/*)"; Double count = (Double) xPath.evaluate(expression, xmlDocument, XPathConstants.NUMBER); if (count == 0) {     // xml集合为空 } else {     // xml集合不为空 } 
  1. 使用DOM解析器进行判断:
NodeList nodeList = xmlDocument.getElementsByTagName("elementName"); if (nodeList.getLength() == 0) {     // xml集合为空 } else {     // xml集合不为空 } 

其中,xmlDocument表示XML文档对象,elementName表示要判断的元素名称。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!