简体   繁体   中英

jsoup select() method not found

I want to make a web parser in java. I'm using jsoup. But I got an error like this

how to fix it? is it because of my classpath? 在此输入图像描述

also this are my imports 在此输入图像描述

Use below code.

Document doc = Jsoup.connect(I).get(); 
Elements links = doc.select("div#content > p").first();  

You have to get the Document from Connection.

Connection con = Jsoup.connect(url);
Document doc = con.get();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM