網頁爬蟲--未完成

chang_hf發表於2020-10-04

xpath表示式

xpath經常和讀取xml檔案或html檔案一起使用,用於讀取檔案中的節點

// 選取文件中所有匹配的節點
@選取屬性
/從根節點選取匹配的節點

java中需要引入的jar包

<dependency>
    <groupId>jaxen</groupId>
    <artifactId>jaxen</artifactId>
    <version>1.2.0</version>
</dependency>

相關文章