1. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
    2. <dependency>
    3. <groupId>org.jsoup</groupId>
    4. <artifactId>jsoup</artifactId>
    5. <version>1.8.3</version>
    6. </dependency>
    1. @Test
    2. public void test() throws IOException {
    3. Document doc = Jsoup.connect("https://baidu.com").get();
    4. doc.select("p").forEach(System.out::println);
    5. }