无法通过页面查询从URL获取html

问题描述 投票:0回答:1

我正在尝试从其中具有页码查询(“ 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();
java html url jsoup
1个回答
0
投票

请尝试以下方法:

Document doc = Jsoup.connect("https://hudebnibazar.cz/kytary/110000/").data​("p", "181").get();
Element e = doc.body();

因为我可以看到here in the documentation有用于设置请求参数的方法data

© www.soinside.com 2019 - 2024. All rights reserved.