Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我的 html 文档中存在“film-profile”类,我想要一张笑脸
我试过输入像“”这样的简单文本,但是当我输入一个类名时,它仍然给我:(即使那个类确实存在。
这是我目前正在使用的代码
if(htmlDoc.text().contains("film-profile")) { System.out.println(":)"); } else { System.out.println(":("); }
先感谢您!
尝试:
if(Jsoup.connect("yourURL").get().select(".film-profile").size()!=0){ System.out.println(":)"); } else { System.out.println(":("); }