将NodeList转换为Element列表
importcn.hutool.core.util.XmlUtil; importorg.w3c.dom.Document; publicclassTest { publicstaticvoidmain(String[] args) { StringxmlStr="f://text.xml"; Documentdocument=XmlUtil.parseXml(xmlStr); XmlUtil.transElements(document.getDocumentElement(), document.getElementsByTagName("test")); } }