在Java中判斷xml集合是否為空,可以使用以下方法:
XPath xPath = XPathFactory.newInstance().newXPath();
String expression = "count(/root/*)";
Double count = (Double) xPath.evaluate(expression, xmlDocument, XPathConstants.NUMBER);
if (count == 0) {
// xml集合為空
} else {
// xml集合不為空
}
NodeList nodeList = xmlDocument.getElementsByTagName("elementName");
if (nodeList.getLength() == 0) {
// xml集合為空
} else {
// xml集合不為空
}
其中,xmlDocument
表示XML文檔對象,elementName
表示要判斷的元素名稱。