真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

android中XPath如何解析xml-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān) android中XPath如何解析xml,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

堅(jiān)守“ 做人真誠 · 做事靠譜 · 口碑至上 · 高效敬業(yè) ”的價(jià)值觀,專業(yè)網(wǎng)站建設(shè)服務(wù)10余年為成都護(hù)欄打樁機(jī)小微創(chuàng)業(yè)公司專業(yè)提供成都定制網(wǎng)站營銷網(wǎng)站建設(shè)商城網(wǎng)站建設(shè)手機(jī)網(wǎng)站建設(shè)小程序網(wǎng)站建設(shè)網(wǎng)站改版,從內(nèi)容策劃、視覺設(shè)計(jì)、底層架構(gòu)、網(wǎng)頁布局、功能開發(fā)迭代于一體的高端網(wǎng)站建設(shè)服務(wù)。

XPath 是一門在 XML 文檔中查找信息的語言。XPath 可用來在 XML 文檔中對(duì)元素和屬性進(jìn)行遍歷。

XPath 是 W3C XSLT 標(biāo)準(zhǔn)的主要元素,并且 XQuery 和 XPointer 同時(shí)被構(gòu)建于 XPath 表達(dá)之上。

XPath只適合用來查詢xml的信息,對(duì)于完整的解析xml文件的建議不要使用這個(gè)方式,最好的解析xml文件應(yīng)該是sax,pull這兩種方式。

我是在Android 2.2系統(tǒng)上做的這個(gè)測試,低于2.2不知道行不行。

下面就具體說下XPath解析xml的步驟:xpathTest.xml 和android dom 解析xml方式 中的DomTest.xml一樣

1、創(chuàng)建InputSources

2、獲得XPathFactory實(shí)例。

3、用XPathFactory實(shí)例獲取XPath的實(shí)例

4、XPath調(diào)用evaluate()方法獲取查詢出的NodeList

private void xPathParserXml(){  
        //獲取XPathFactory實(shí)例  
        XPathFactory factory = XPathFactory.newInstance();  
        //用工程生成XPath實(shí)例,解析xml  
        XPath xpath = factory.newXPath();  
        //  
        try {  
            InputSource source = new InputSource(getResources().getAssets().open("xPathTest.xml"));  
          
            //第一個(gè)參數(shù):需要查詢的節(jié)點(diǎn)名稱,必須要在節(jié)點(diǎn)前加“//”  
            //第二個(gè)參數(shù):查詢的輸入源  
            //第三個(gè)參數(shù):返回的類型  
//          NodeList nodeList = (NodeList) xpath.evaluate("http://group", source, XPathConstants.NODESET);  
//          if(nodeList != null && nodeList.getLength() > 0){  
//              for(int i = 0;i < nodeList.getLength();i++){  
//                  Node node = nodeList.item(i);  
//                  //在這也可以得到的子節(jié)點(diǎn)。但是這樣不符合xpath的風(fēng)格。  
//                  NodeList personList = node.getChildNodes();  
//                  Element  nodeAttr =(Element)node;  
//                  String groupName = nodeAttr.getAttribute("name");  
//                  String num = nodeAttr.getAttribute("num");  
//                    
//                  Log.e("TEST", ""+groupName+"   "+num);  
//              }  
//          }  
              
//          //獲取節(jié)點(diǎn)信息  
//          NodeList personList = (NodeList) xpath.evaluate("http://person", source, XPathConstants.NODESET);  
//          if(personList != null && personList.getLength() > 0){  
//              for(int i = 0;i < personList.getLength();i++){  
//                  Element node = (Element)personList.item(i);  
//                  //在這也可以得到的子節(jié)點(diǎn)。  
//                  NodeList childList = node.getChildNodes();  
//                  String groupName = node.getAttribute("name");  
//                  String age = node.getAttribute("age");  
//                    
//                  Log.e("TEST", ""+groupName+"   "+age);  
//              }  
//          }  
              
            //獲取節(jié)點(diǎn)信息  
            NodeList chineseList = (NodeList) xpath.evaluate("http://chinese", source, XPathConstants.NODESET);  
            if(chineseList != null && chineseList.getLength() > 0){  
                for(int i = 0;i < chineseList.getLength();i++){  
                    Node node = chineseList.item(i);  
                    String chinese = node.getTextContent();  
                    Log.e("TEST", ""+chinese);  
                }  
            }  
        } catch (IOException e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        } catch (XPathExpressionException e) {  
            e.printStackTrace();  
        }  
          
    }

注意:xpath.evaluate()不能調(diào)用兩次,報(bào)錯(cuò)誤。至于原因不清楚。知道原因的請留言告知,謝謝。

對(duì)已有人提出XPath能不能查詢很大的xml文件(超過1M或),這個(gè)在理論上應(yīng)該可以,只要你能解決InputSource可以讀取大容量文件問題就可以了。

關(guān)于“ android中XPath如何解析xml”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


文章名稱:android中XPath如何解析xml-創(chuàng)新互聯(lián)
本文URL:http://weahome.cn/article/ejidg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部