0
こんにちは私は他のすべての要素と1つのjsoup要素を比較しようとしています.2つの要素が等しい場合、count ++を作成する必要があります。この場合には、私は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では?? –