Jsoupを使って、d-kaim.net/index.htmlのすべてのアンカータグのhrefを標準出力に表示。特に意味はない
Document document = Jsoup.connect("http://d-kami.net").get(); document.select("a").forEach(element -> System.out.println(element.attr("href")));
Jsoupを使って、d-kaim.net/index.htmlのすべてのアンカータグのhrefを標準出力に表示。特に意味はない
Document document = Jsoup.connect("http://d-kami.net").get(); document.select("a").forEach(element -> System.out.println(element.attr("href")));