我正在尝试从其中具有页码查询(“ https://hudebnibazar.cz/kytary/110000/?p=181”)的URL获取特定的html文档。但是,当我打印出结果html时,它总是给我第一页。
这是代码段:
Document doc = Jsoup.connect("https://hudebnibazar.cz/kytary/110000/?p=181").get();
Element e = doc.body();
请尝试以下方法:
Document doc = Jsoup.connect("https://hudebnibazar.cz/kytary/110000/").data("p", "181").get();
Element e = doc.body();
因为我可以看到here in the documentation有用于设置请求参数的方法data