Jsoup中Xpath的使用
<?xml version="1.0" encoding="UTF-8" ?>
<students? ?>
<student number="heima_0001">
<name id="1">
<xing>wu</xing>
<ming>di</ming>
</name>
<age? name="xiaoer">19</age>
<sex>male</sex>
</student>
<student number="heima_0002">
<name>wudi</name>
<age>19</age>
<sex>male</sex>
</student>
</students>
package cn.itcast.xml.jsoup;
import java.io.File;
import java.io.IOException;
import java.util.List;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import cn.wanghaomiao.xpath.exception.XpathSyntaxErrorException;
import cn.wanghaomiao.xpath.model.JXDocument;
import cn.wanghaomiao.xpath.model.JXNode;
/*
?* Jsoup快速入門
?*/
public class JsoupDemo6 {
public static void main(String[] args) throws IOException, XpathSyntaxErrorException {
//2.獲取Document對象(是要基于xml文檔才可以獲取的)
//根據(jù)xml文檔來獲取
//2.1獲取student.xml的path
String path=JsoupDemo6.class.getClassLoader().getResource("student.xml").getPath();
//2.2解析xml文檔,加載文檔進內(nèi)存,獲取dom樹(也就獲取到了document對象)
Document document = Jsoup.parse(new File(path),"utf-8");//字符集和文本的字符集一致
//3.根據(jù)document對象,創(chuàng)建JXDocument對象
JXDocument jxDocument=new JXDocument(document);
//4.結(jié)合Xpath語法來查詢了
//4.1查詢所有的student標(biāo)簽
List<JXNode> jxNodes = jxDocument.selN("//student");
for (JXNode jxNode : jxNodes) {
System.out.println(jxNode);
}
System.out.println("===============");
//4.2查詢所有student標(biāo)簽下的name標(biāo)簽
List<JXNode> jxNodes2 = jxDocument.selN("//student/name");
for (JXNode jxNode : jxNodes2) {
System.out.println(jxNode);
}
System.out.println("===============");
//4.3查詢student標(biāo)簽下帶有id屬性的name標(biāo)簽
List<JXNode> jxNodes3 = jxDocument.selN("//student/name[@id]");
for (JXNode jxNode : jxNodes3) {
System.out.println(jxNode);
}
System.out.println("===============");
//4.4查詢student標(biāo)簽下帶有id屬性的name標(biāo)簽并且id的屬性值為1
List<JXNode> jxNodes4 = jxDocument.selN("//student/name[@id='1']");
for (JXNode jxNode : jxNodes4) {
System.out.println(jxNode);
}
}
}