我刚开始使用JSoup从网站上获取小文本,但我只是想不通如何从“标题”类中获取“ BONES”一词:
<a href="https://anilist.co/studio/4/BONES" target="_blank" ng-show="b.studio.name">BONES</a>
这是我的代码:
Document doc = Jsoup.connect("http://anichart.net/Winter-2019").userAgent("mozilla/17.0").get();
Elements temp = doc.select("div.title");
for(Element s : temp) {
System.out.println(s.getElementsByTag("a").text());
}