作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我写字时,我会从 Google 搜索中获得结果。但我得到的结果少于 100 个。我想获得 500 个结果。我该怎么做?
try {
Response response = null;
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("http://www.google.com.tr/search?q="+ URLEncoder.encode(params[0],"utf-8")+"&num=500")
.build();
response = client.newCall(request).execute();
return response.body().string();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
最佳答案
遗憾的是,一次查询无法返回超过 100 个结果。 URL 中的 num
参数最多可以为 100,超过该值仍会返回 100 个结果。
查看此 guide to search URL parameters .
但是,您可以通过使用 start
参数来解决问题 - 这将返回结果的下“页面”。
比如获取前100:
https://www.google.ie/search?q=google+search+parameters&num=100
然后获取下一个 100:
https://www.google.ie/search?q=google+search+parameters&num=100&start=100
构造一个循环来执行此操作应该很容易:
int num = 100;
for (int i = 0; i < 5; i++) {
String url = "http://www.google.com.tr/search?q="
+ URLEncoder.encode(params[0],"utf-8")
+ "&num=" + num
+ "&start=" + (num * i);
// Construct the request object and make the request here
}
您必须分别处理每组 100 个结果,但它应该可以解决问题。
希望这对您有所帮助!
关于android - 如何从 Android 上的 Google 搜索返回超过 100 个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35776236/
我是一名优秀的程序员,十分优秀!