Android解析XML方式(4)

        String path = "http://192.168.56.1:8099/web/person.xml"

        InputStream inputStream = HttpUtils.getXML(path); 

        List<HashMap<String,String>> list = SaxService.readXml(inputStream, "person"); 

        for(HashMap map:list){ 

            System.out.println(map.toString()); 

        } 

    } 

 

这里访问的使用自己搭建的web工程下的一个xml,由于太简单不再给出代码。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/e858b0bc978368f76d635745c614a575.html