【JAVA基础】0012--------判断String类型的XML中是否存在某一个节点

判断String类型的XML中是否存在某一个节点

package com.wql.test01;

import java.io.IOException;
import javax.xml.parsers.ParserConfigurationException;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.jdom.JDOMException;
import org.xml.sax.SAXException;

public class TestXMl {
	public static void main(String[] args) throws DocumentException, ParserConfigurationException, SAXException, IOException, JDOMException {
		String xml = "200影像统计成功,没有该批次的影像信息";
		Document document = DocumentHelper.parseText(xml); 
		Element elementTemplate = document.getRootElement();
		Element node = (Element)elementTemplate.selectSingleNode("//RESPONSE_CODE");
		if(node == null){
			System.out.println("1111111111111");
		}else {
			System.out.println("2222222222222");
		}
		
	}
}



需要用到的JAR包:xercesImpl.jar

你可能感兴趣的:(JAVA)