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 ....
.............在JSP中?? – 2012-03-23 21:33:29