XML转Map


 1 public static Map<String, String> xmlToMap(HttpServletRequest request) throws IOException, DocumentException {
 2 Map<String, String> map = new HashMap<>();
 3 SAXReader reader = new SAXReader();
 4 try(InputStream ins=request.getInputStream()){
 5 Document doc=reader.read(ins);
 6 Element root = doc.getRootElement();
 7 List<Element> list = root.elements();
 8 
 9 for (Element e : list) {
10 map.put(e.getName(), e.getText());
11 }
12 return map;
13 }
14 }
View Code
 
 
 1 public static Map<String, String> xmlToMap(HttpServletRequest request) throws IOException, DocumentException {
 2     Map<String, String> map = new HashMap<>();
 3     SAXReader reader = new SAXReader();
 4     try(InputStream ins=request.getInputStream()){
 5         Document doc=reader.read(ins);
 6         Element root = doc.getRootElement();
 7         List<Element> list = root.elements();
 8 
 9         for (Element e : list) {
10             map.put(e.getName(), e.getText());
11         }
12         return map;
13     }
14 }
 
 

 

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM