0

如果我的 html 文档中存在“film-profile”类,我想要一张笑脸

我试过输入像“”这样的简单文本,但是当我输入一个类名时,它仍然给我:(即使那个类确实存在。

这是我目前正在使用的代码

if(htmlDoc.text().contains("film-profile")) {
        System.out.println(":)");
} else {
        System.out.println(":(");
}

先感谢您!

4

1 回答 1

1

尝试:

if(Jsoup.connect("yourURL").get().select(".film-profile").size()!=0){
   System.out.println(":)");
} else {
   System.out.println(":(");
} 
于 2013-11-03T18:09:46.220 回答