0

我已经上网好几天了,我真的需要一些帮助,我正在尝试将 XML 文档从 Web 服务器解析为 android 中的 ListView,我已经弄清楚如何使用本地文件来做到这一点,这很好,但无论我在堆栈或其他网站上找到什么,它似乎都不起作用,谁能帮我解决这个问题?我知道该页面存在并且有效……我现在把我所有的头发都拔掉了,所以请帮忙:)

下面是我的方法代码,这是在 on create 和 onclicklistener 之后调用的,我也在使用文档构建器工厂方法。

private void xmlparse()
{

    try {

            DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
            DocumentBuilder builder = dbf.newDocumentBuilder();
            Document doc = builder.parse(new URL("URL in here").openConnection().getInputStream());

            doc.getDocumentElement().normalize();

            NodeList nList = doc.getElementsByTagName("item");

            for (int temp = 0; temp < nList.getLength(); temp++) {

               Node nNode = nList.item(temp);
               if (nNode.getNodeType() == Node.ELEMENT_NODE) {

                  Element eElement = (Element) nNode;

                  titles.add(getTagValue(TITLE_1, eElement));  //TITLE_1 is the xml tag title

               }
            }


          } catch (Exception e) {
            e.printStackTrace();
          }
}

private String getTagValue(String sTag, Element eElement) {
        NodeList nlList = eElement.getElementsByTagName(sTag).item(0).getChildNodes();

            Node nValue = (Node) nlList.item(0);

        return nValue.getNodeValue();
     }

我错过了什么愚蠢的东西还是我完全错过了球?任何人都可以指出我的信息,这将有助于或只是让我知道:)

干杯!!

4

1 回答 1

1

我已经完成了该任务,您应该执行以下操作:

                //Formattage des strings pour le passage en URL
                from = URLEncoder.encode(from, "UTF-8");
                to = URLEncoder.encode(to, "UTF-8");
                String addressToConnect = "http://maps.googleapis.com/maps/api/distancematrix/xml?origins="+from+"&destinations="+to+"&mode=driving&units="+unit+"&sensor=false";

                //Partie connexion
                URL url = new URL(addressToConnect);
                HttpURLConnection connexion = (HttpURLConnection) url.openConnection();
                connexion.connect();
                InputSource geocoderResultInputSource;
                geocoderResultInputSource = new InputSource(connexion.getInputStream());

                //Partie XML/XPATH

                Document geocoderResultDocument = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(geocoderResultInputSource);
                XPath xpath = XPathFactory.newInstance().newXPath();

                //On s'assure que la requete envoy�e � l'API � bien renvoy�e un STATUS = OK cf. Google API
                NodeList nodeListCodeResult = (NodeList) xpath.evaluate("//status", geocoderResultDocument, XPathConstants.NODESET);

ETC...

希望能帮助到你,

于 2012-12-06T23:58:56.283 回答