大家好我想尝试将一个jsoup元素与所有其他元素进行比较,如果两个元素相等,我需要计算++;在这种情况下,我需要比较links1中的所有元素与links2 links3 links4 ....
中的所有元素Document document1 = Jsoup.parse(webPage1);
Elements links1 = document1.select("example");
Document document2 = Jsoup.parse(webPage2);
Elements links2 = document2.select("example");
Document document3 = Jsoup.parse(webPage3);
Elements links3 = document3.select("example");
Document document4 = Jsoup.parse(webPage4);
Elements links4 = document4.select("example");
JSP中的代码....
答案 0 :(得分:0)
Elements
只是Element
的列表,所以比较如下:
for (Element element : links1) {
if(links2.contains(element)){
count++;
}
//maybe do the same thing with links3 links4.
}
如果你想在JSP中这样做 - 这是另一个问题。