Dom4j解析

时间:2022-05-16 00:27:10

  

dom4j-1.6.1.jar,

这个包提供了xml解析相关的方法。

这里做一个记录,微信公众号里需要对HttpServletRequest做解析,实际上也可以用dom4j提供的方法进行解析转换。

这里直接上代码:

 /**
* xml转换为map
*
* @param request
* @return
* @throws IOException
* @throws DocumentException
*/
public static Map<String, String> xmlToMap(HttpServletRequest request) throws IOException, DocumentException {
Map<String, String> map = new HashMap<String, String>();
//生成解析器对象,使用的dom4j-1.6.1版本
SAXReader reader = new SAXReader();
//根据HttpServletRequest获得输入流
InputStream ins = request.getInputStream();
//通过SAXReader对象把输入流转换成Document对象
Document doc = reader.read(ins); Element root = doc.getRootElement(); List<Element> list = root.elements();
for (Element e : list) {
map.put(e.getName(), e.getText()); }
String json = UtilJackson.mapToJsonstr(map);
System.out.println("json:" + json);
ins.close(); return map;
}