dom4j解析xml字符串(最基本⽅法)
xml格式:
返回结果⼀:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><ResponseInfo>
<Date>20180720182403</Date>
<IsSuccess>true</IsSuccess>
<Message>处理成功,流⽔号是:110226************-198202</Message><ResponseCode>0</ResponseCode> <SerialNo>110226************-198202</SerialNo>
<ValidCode></ValidCode>
</ResponseInfo>
返回结果⼆:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><ResponseInfo>
<Date>20180723101537</Date>
<ErrorsInfo>您已订购此产品,如需重复订购请联系相关负责⼈</ErrorsInfo>
<IsSuccess>false</IsSuccess>
<Message></Message>
<ResponseCode>2</ResponseCode>
</ResponseInfo>
java代码:
Document doc = null;
try {
// 下⾯的是通过解析xml字符串的
doc = DocumentHelper.parseText(response); // 将字符串转为XML
/
/获取根节点元素对象
Element root = RootElement(); // 获取根节点
logger.info("根节点:" + Name()); // 拿到根节点的名称
//获取⼦节点
使用dom4j解析xml文件String date = root.elementText("Date");//获取⼦节点
logger.info("Date:"+date);
String isSuccess = root.elementText("IsSuccess");//获取⼦节点
String responseCode = root.elementText("ResponseCode");//获取⼦节点
String errorsInfo = root.elementText("ErrorsInfo");//获取⼦节点
String message = root.elementText("Message");//获取⼦节点
String serialNo = root.elementText("SerialNo");//获取⼦节点
} catch (DocumentException e) {
<("",e);
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。