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