這篇文章將為大家詳細講解有關(guān) android中XPath如何解析xml,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
10年積累的成都網(wǎng)站制作、做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè)經(jīng)驗,可以快速應對客戶對網(wǎng)站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認識你,你也不認識我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有東城免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
XPath 是一門在 XML 文檔中查找信息的語言。XPath 可用來在 XML 文檔中對元素和屬性進行遍歷。
XPath 是 W3C XSLT 標準的主要元素,并且 XQuery 和 XPointer 同時被構(gòu)建于 XPath 表達之上。
XPath只適合用來查詢xml的信息,對于完整的解析xml文件的建議不要使用這個方式,最好的解析xml文件應該是sax,pull這兩種方式。
我是在Android 2.2系統(tǒng)上做的這個測試,低于2.2不知道行不行。
下面就具體說下XPath解析xml的步驟:xpathTest.xml 和android dom 解析xml方式 中的DomTest.xml一樣
1、創(chuàng)建InputSources
2、獲得XPathFactory實例。
3、用XPathFactory實例獲取XPath的實例
4、XPath調(diào)用evaluate()方法獲取查詢出的NodeList
private void xPathParserXml(){ //獲取XPathFactory實例 XPathFactory factory = XPathFactory.newInstance(); //用工程生成XPath實例,解析xml XPath xpath = factory.newXPath(); // try { InputSource source = new InputSource(getResources().getAssets().open("xPathTest.xml")); //第一個參數(shù):需要查詢的節(jié)點名稱,必須要在節(jié)點前加“//” //第二個參數(shù):查詢的輸入源 //第三個參數(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é)點 。但是這樣不符合xpath的風格。 // NodeList personList = node.getChildNodes(); // Element nodeAttr =(Element)node; // String groupName = nodeAttr.getAttribute("name"); // String num = nodeAttr.getAttribute("num"); // // Log.e("TEST", ""+groupName+" "+num); // } // } // //獲取 節(jié)點信息 // 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é)點 和 。 // NodeList childList = node.getChildNodes(); // String groupName = node.getAttribute("name"); // String age = node.getAttribute("age"); // // Log.e("TEST", ""+groupName+" "+age); // } // } //獲取 節(jié)點信息 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)用兩次,報錯誤。至于原因不清楚。知道原因的請留言告知,謝謝。
對已有人提出XPath能不能查詢很大的xml文件(超過1M或),這個在理論上應該可以,只要你能解決InputSource可以讀取大容量文件問題就可以了。
關(guān)于“ android中XPath如何解析xml”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。