我正在尝试使用reddit.com/r/subreddit/random
从/r/nocontext 获取随机链接。但是,如果我把这段代码放在一个循环中,它似乎会反复把我带到同一个链接。这让我觉得 Jsoup 正在缓存网页,但我需要禁用它。这是我的代码:
Document doc = null;
try {
doc = Jsoup.connect("http://www.reddit.com/r/nocontext/random").get();
Elements elements = doc.select("div.entry.unvoted p.title a.title");
for (Element link : elements)
System.out.println(link.text());
} catch (IOException e) {
e.printStackTrace();
}
有人对如何解决此问题有任何见解吗?