使用 Java 搜索 Google 本地化网络搜索

发布于 2024-09-24 08:17:22 字数 1109 浏览 2 评论 0原文

我正在尝试使用 Java 应用程序在不同国家/地区搜索 Google,即 google.co.uk、google.de 等。我发现与 Java 一起使用的 Google Ajax API 只能让您使用以下内容进行网络搜索,

URL url = new URL("http://ajax.googleapis.com/ajax/services/search/web?v=1.0&"
+ "q=information%20retrieval&key=INSERT-YOUR-KEY&userip=USERS-IP-ADDRESS");

URLConnection connection = url.openConnection();

connection.addRequestProperty("Referer", /* Enter the URL of your site here */);

但是,这只是给我 google.com 的结果。我需要每个国家/地区的单独结果。无论如何,有没有办法用 Java 来做到这一点。

谷歌有本地搜索,但它是基于谷歌地图的,它使用经度和纬度,并提供商业搜索结果。我需要针对每个国家/地区的网页。

任何想法..

我试图用以下内容抓取 google.co.uk 的搜索结果:

http://www.google.co.uk/#hl=en&放大器; source=hp&q=information+retrieval&aq=f&aqi=g10&aql=&oq=&gs_rfai=CjqZ0vBeYTLfwMZz0ygTJ84WADgAAAKoEBU_Qz3dV&fp=44fc429e19c3a006

但返回结果是空页。有人知道解决方法吗?

谢谢萨姆

I am trying to use a Java App to search Google in different countries, i.e. google.co.uk, google.de, etc. I found that the Google Ajax API used with Java will only let you do web search with the following

URL url = new URL("http://ajax.googleapis.com/ajax/services/search/web?v=1.0&"
+ "q=information%20retrieval&key=INSERT-YOUR-KEY&userip=USERS-IP-ADDRESS");

URLConnection connection = url.openConnection();

connection.addRequestProperty("Referer", /* Enter the URL of your site here */);

however, that just gives me google.com's results. I need separate results for each country. Is there anyway to do this with Java.

Google has local search, but that's based on Google Maps, and it uses longitude and latitude, and provides business search results. I need web pages specific to each country.

Any ideas..

I was trying to scrape google.co.uk's search result with the following:

http://www.google.co.uk/#hl=en&source=hp&q=information+retrieval&aq=f&aqi=g10&aql=&oq=&gs_rfai=CjqZ0vBeYTLfwMZz0ygTJ84WADgAAAKoEBU_Qz3dV&fp=44fc429e19c3a006

but the returned result is an empty page. Any one know a workaround?

thanks

Sam

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挖鼻大婶 2024-10-01 08:17:22

根据类参考,您可以设置“hl”参数在 URL 查询中。因此,对于 UK 结果,您将指定 hl=en-gb,并且您的代码将如下所示:

URL url = new URL("http://ajax.googleapis.com/ajax/services/search/web?v=1.0&"
+ "hl=en-gb&q=information%20retrieval&key=INSERT-YOUR-KEY&userip=USERS-IP-ADDRESS");

URLConnection connection = url.openConnection();

connection.addRequestProperty("Referer", /* Enter the URL of your site here */);

我在这里假设语言影响结果,仅仅是因为这两个请求 (en v fr) 似乎会导致不同的结果:

您可以在此处找到语言代码列表:http ://msdn.microsoft.com/en-us/library/ms533052(v=vs.85).aspx

According to the class reference you can set a 'hl' parameter in the URL query. So for UK results you would specify hl=en-gb, and your code would look like this:

URL url = new URL("http://ajax.googleapis.com/ajax/services/search/web?v=1.0&"
+ "hl=en-gb&q=information%20retrieval&key=INSERT-YOUR-KEY&userip=USERS-IP-ADDRESS");

URLConnection connection = url.openConnection();

connection.addRequestProperty("Referer", /* Enter the URL of your site here */);

I am assuming here that the langauge affects the results, simply because these two requests (en v fr) appear to result in different results:

You can find a lst of language codes here: http://msdn.microsoft.com/en-us/library/ms533052(v=vs.85).aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文