memo.xight.org

日々のメモ

カテゴリ : Google

7ページ目 / 全7ページ

Googleの特殊機能

タイトルに検索語を含むページを検索する

allintitle: キーワード

本文に検索語を含むページを検索する


URI に検索語を含むページを検索する


ページ内のリンクに検索語を含むページを検索する



ファイルタイプを指定して検索

filetype:pdf
filetype:ps
filetype:doc
filetype:xls
filetype:ppt
filetype:rtf

更新されて○ヶ月以内のページ

http://www.google.com/search?q=keyword&as_qdr=m3 3ヶ月
http://www.google.com/search?q=keyword&as_qdr=m6 6ヶ月
http://www.google.com/search?q=keyword&as_qdr=y 1年

リンク検索

link:www.example.com

ドメイン制約検索

site:www.example.com

電卓機能

  半角で計算式を入力
5 * 5 + 2

定義検索 ([2005-01-28] 追記)

define:public key cryptography

Reference

  Japan.internet.com Webビジネス - 「無題ドキュメント」って何?
  http://japan.internet.com/busnews/20030605/8.html
  Googleの詳しい検索方法
  http://www.google.com/intl/ja/help/refinesearch.html
  Googleの特殊機能
  http://www.google.com/intl/ja/help/features.html
  電卓機能
  http://www.google.com/intl/ja/help/features.html#calculator

via

  www.textfile.org - 2005-01-26
  http://www.hyuki.com/tf/200501#i20050126233047

Google API を使ってみる

サンプルの使用法

  java -cp googleapi.jar com.google.soap.search.GoogleAPIDemo ライセンスキー search 検索語
  日本語が通らないという情報があったけど,通るようになっているっぽい.

API の使用方法

  全ての API は com.google.soap.search パッケージに属します.
  GoogleSearch クラスのオブジェクトに検索語を渡し, doSearch() メソッドを呼び出すと,
  検索が実行されて, その結果を収めた GoogleSearchResult オブジェクトが得られます.

GoogleSearch google=new GoogleSearch();
google.setKey(自分のライセンスキー);
google.setQueryString(検索文字列);
GoogleSearchResult result=google.doSearch();


  検索失敗時に GoogleSearchFault 例外が投げられるので, try〜catch 節で囲む.

  GoogleSearchResult オブジェクトから検索結果が取り出せます.
GoogleSearchResultElement[] element=result.getResultElements();
for (int i=0;i<=element.length-1;i++)
{
	// element[i] の情報を使う
}


  スペルミス指摘,キャッシュページの取り出しは, GoogleSearch オブジェクトの doGetCachedPage メソッドや
  doSpellingSuggestion メソッドを呼び出す.

Reference

  Google Web APIs
  https://www.google.com/apis/
  Atsushi's Homepage
  http://www.antun.net/tips/soap/google.html