我正在尝试检索relatedwords.org网站中的相似单词,但是在源代码中没有显示单词的块。这是我正在使用的代码:
public class SimilarWords {
public static void main(String[] args) throws IOException {
Document homePage = Jsoup.connect("https://relatedwords.org/relatedto/towing").ignoreHttpErrors(true).get();
System.out.println(homePage);
}
}
可能是什么原因?