码迷,mamicode.com
首页 > 其他好文 > 详细

使用dom4j解析XML

时间:2016-10-13 09:26:38      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

jar包:dom4j

//使用dom4j解析返回的xml
SAXReader reader = new SAXReader();
Document doc = reader.read(new ByteArrayInputStream(xmlResult.getBytes("UTF-8")));
Element element = doc.getRootElement();
List<Element> childElementList = element.elements();

for(Element tmp:childElementList )
{
if(tmp.attributeValue("sqlFormula") != null)
{
Map<String,String> columnMap = new HashMap<String,String>();
columnMap.put("columnName", tmp.attributeValue("name"));
columnMap.put("name", tmp.attributeValue("sqlFormula"));
columnMapList.add(columnMap);
}else
{
getColumnName(tmp.elements(),columnMapList);
}
}

使用dom4j解析XML

标签:

原文地址:http://www.cnblogs.com/JoeyWong/p/5955100.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!