要使用dom4j解析XML字符串,首先需要将XML字符串转换为org.dom4j.Document对象。可以按照以下步骤进行操作:
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
String xmlString = "<root><child>value</child></root>";
Document document = null;
try {
document = DocumentHelper.parseText(xmlString);
} catch (DocumentException e) {
e.printStackTrace();
}
Element root = document.getRootElement();
System.out.println("Root element: " + root.getName());
//遍历子节点
for (Iterator<Element> it = root.elementIterator(); it.hasNext();) {
Element child = it.next();
System.out.println("Child element: " + child.getName() + ", value: " + child.getText());
}
通过以上步骤,就可以使用dom4j解析XML字符串并获取其中的节点信息。