XPath は、XML ドキュメント内の情報を検索するための言語です。 XPath を使用すると、XML ドキュメント内の要素と属性をトラバースできます。
XPath は W3C XSLT 標準の主要な要素であり、XQuery と XPointer は両方とも XPath 式の上に構築されています。
したがって、XPath を理解することは、多くの高度な XML アプリケーションの基礎となります。 XPath の詳細については、http://www.w3school.com.cn/xpath/index.asp を参照してください。
XPath は、XML 情報のクエリにのみ適しています。XML ファイルを完全に解析する場合は、この方法を使用しないことをお勧めします。
このテストは Android 2.2 システムで実行しましたが、2.2 より前のバージョンでは動作するかどうかはわかりません。
以下は、XPath が XML を解析する手順の詳細な説明です。xpathTest.xml は、Android dom の XML 解析メソッドの DomTest.xml と同じです
1。InputSources を作成します
2。XPathFactory インスタンスを取得します。
3. XPathFactory インスタンスを使用して XPath インスタンスを取得します
4. XPath は、クエリされた NodeList を取得するために、evaluate() メソッドを呼び出します
private void xPathParserXml(){ //获取XPathFactory实例 XPathFactory factory = XPathFactory.newInstance(); //用工程生成XPath实例,解析xml XPath xpath = factory.newXPath(); // try { InputSource source = new InputSource(getResources().getAssets().open("xPathTest.xml")); //第一个参数:需要查询的节点名称,必须要在节点前加“//” //第二个参数:查询的输入源 //第三个参数:返回的类型 // NodeList nodeList = (NodeList) xpath.evaluate("//group", source, XPathConstants.NODESET); // if(nodeList != null && nodeList.getLength() > 0){ // for(int i = 0;i < nodeList.getLength();i++){ // Node node = nodeList.item(i); // //在这也可以得到<group>的子节点<person>。但是这样不符合xpath的风格。 // NodeList personList = node.getChildNodes(); // Element nodeAttr =(Element)node; // String groupName = nodeAttr.getAttribute("name"); // String num = nodeAttr.getAttribute("num"); // // Log.e("TEST", ""+groupName+" "+num); // } // } // //获取<person>节点信息 // NodeList personList = (NodeList) xpath.evaluate("//person", source, XPathConstants.NODESET); // if(personList != null && personList.getLength() > 0){ // for(int i = 0;i < personList.getLength();i++){ // Element node = (Element)personList.item(i); // //在这也可以得到<person>的子节点<chinese>和<english>。 // NodeList childList = node.getChildNodes(); // String groupName = node.getAttribute("name"); // String age = node.getAttribute("age"); // // Log.e("TEST", ""+groupName+" "+age); // } // } //获取<chinese>节点信息 NodeList chineseList = (NodeList) xpath.evaluate("//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() を 2 回呼び出すことはできず、エラーが報告されます。理由は不明です。理由がわかる場合は、メッセージを残してお知らせください。ありがとうございます。
XPath が大容量の XML ファイル (1M 以上) をクエリできるかどうかを尋ねる人もいますが、これは、InputSource が大容量のファイルを読み込めるという問題を解決できる限り、理論的には可能です。
上記は Android XPath 解析 XML の内容です。その他の関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn) に注目してください。