博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Dom4j解析xml格式的字符串【java】
阅读量:6688 次
发布时间:2019-06-25

本文共 3726 字,大约阅读时间需要 12 分钟。

一般我们会使用dom4j、SAX、w3c来解析xml文件,网上也大多提供此类解决方案。

但在实际项目中,也有会解析xml格式的字符串报文的。

比如,有如下字符串:

String = "
OK
201605110015
070000314903
http://10.202.18.24:8080/osms/wbs/print/printOrder.pub?mailno=vYrygnDPNe9Csjz35xwzwQ==
http://10.202.18.24:8080/osms/wbs/print/printInvoice.pub?mailno=vYrygnDPNe9Csjz35xwzwQ==
";

对如上字符串进行格式化之后:

OK
201605110015
070000314903
http://10.202.18.24:8080/osms/wbs/print/printOrder.pub?mailno=vYrygnDPNe9Csjz35xwzwQ==
http://10.202.18.24:8080/osms/wbs/print/printInvoice.pub?mailno=vYrygnDPNe9Csjz35xwzwQ==

即使格式化之后,我们也发现这串报文比较特殊,因为它使用了属性而不是元素节点来描述对象。

 

下面提供dom4j的解决方案:

public HashMap
stringToXmlByDom4j(String content){ HashMap
result = new HashMap
(); try { SAXReader saxReader=new SAXReader(); org.dom4j.Document docDom4j=saxReader.read(new ByteArrayInputStream(content.getBytes("utf-8"))); org.dom4j.Element root = docDom4j.getRootElement(); List
rooAttrList = root.attributes(); for (Attribute rootAttr : rooAttrList) { System.out.println(rootAttr.getName() + ": " + rootAttr.getValue()); result.put(rootAttr.getName(), rootAttr.getValue()); } List
childElements = root.elements(); for (org.dom4j.Element e1 : childElements) { System.out.println("第一层:"+e1.getName() + ": " + e1.getText()); result.put(e1.getName(), e1.getText()); } for (org.dom4j.Element child : childElements) { //未知属性名情况下 List
attributeList = child.attributes(); for (Attribute attr : attributeList) { System.out.println("第二层:"+attr.getName() + ": " + attr.getValue()); result.put(attr.getName(), attr.getValue()); } //已知属性名情况下// System.out.println("id: " + child.attributeValue("id")); //未知子元素名情况下 List
elementList = child.elements(); for (org.dom4j.Element ele : elementList) { System.out.println("第二层:"+ele.getName() + ": " + ele.getText()); result.put(ele.getName(), ele.getText()); List
kidAttr = ele.attributes(); for (Attribute kidattr : kidAttr) { System.out.println("第三层:"+kidattr.getName() + ": " + kidattr.getValue()); result.put(kidattr.getName(), kidattr.getValue()); } List
lidList = ele.elements(); int size = lidList.size(); if(size>0){ for (org.dom4j.Element e2 : lidList) { System.out.println("第三层:"+e2.getName() + ": " + e2.getText()); result.put(e2.getName(), e2.getText()); } } }// System.out.println(); //已知子元素名的情况下// System.out.println("title" + child.elementText("title"));// System.out.println("author" + child.elementText("author")); //这行是为了格式化美观而存在// System.out.println(); } } catch (Exception e) { e.printStackTrace(); } return result; }

 

写一个main方法测试结果如下:

响应结果:
OK
201605110015
070000314903
http://10.202.18.24:8080/osms/wbs/print/printOrder.pub?mailno=vYrygnDPNe9Csjz35xwzwQ==
http://10.202.18.24:8080/osms/wbs/print/printInvoice.pub?mailno=vYrygnDPNe9Csjz35xwzwQ==
service: OrderWebService第一层:Head: OK第一层:Body: 第二层:OrderResponse: 第三层:customerOrderNo: 201605110015第三层:mailNo: 070000314903第三层:printUrl: http://10.202.18.24:8080/osms/wbs/print/printOrder.pub?mailno=vYrygnDPNe9Csjz35xwzwQ==第三层:invoiceUrl: http://10.202.18.24:8080/osms/wbs/print/printInvoice.pub?mailno=vYrygnDPNe9Csjz35xwzwQ==

  

 

转载于:https://www.cnblogs.com/shindo/p/5489263.html

你可能感兴趣的文章
Microsoft Visual C++ Runtime library not enough space for thread data
查看>>
Centos 7 ntp时间服务器搭建
查看>>
电压电流采集模块,温湿度采集,称重模块,变送器,adc模数转换模块
查看>>
2019北京物联网智慧城市大数据博览会开启中国之路
查看>>
华为云网络服务两场景
查看>>
将 Desktop Central 与帮助台和 OS Deployer 集成
查看>>
技巧分享:caj怎么转化为pdf
查看>>
WebPack牛刀小试
查看>>
技巧: iPhone玩游戏手机发烫?有妙招
查看>>
SQL Server 2008高可用×××介绍
查看>>
VirtualBox无法进入Win8PE的桌面
查看>>
Linux卸载系统自带的httpd的方法
查看>>
弹出菜单效果
查看>>
SQL常用语句集合(不断更新)
查看>>
回顾2014,展望2015
查看>>
BIOS基础知识(下)
查看>>
Iterator 和 Iterable 区别和联系
查看>>
经典SQL语句大全
查看>>
测试LCD1602的显示,显示时间,提示语
查看>>
PHP常见的加密技术
查看>>