2012-03-23 266 views
0

你好,我試圖比較一個jsoup元素與所有其他元素,如果兩個元素是相等的,我需要計數++;在這種情況下,我需要的所有元素比較與links2 links3 links4所有元素links1 ....比較jsoup元素

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

.............在JSP中?? – 2012-03-23 21:33:29

回答

0

Elements是隻是一個Element名單,所以compating看起來像:

for (Element element : links1) { 
      if(links2.contains(element)){ 
       count++; 
      } 
      //maybe do the same thing with links3 links4. 
     } 

如果你想要做它在JSP - 這是另外一個問題。