本例测试效果图:


代码文件:


unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls; type
  TForm1 = class(TForm)
    Memo1: TMemo;
    Edit1: TEdit;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  end; var
  Form1: TForm1; implementation {$R *.dfm} uses MsXML, SuperObject; //这是将字符串转换成 UTF 编码的函数, 这里用于 Google 的搜索地址
function ToUTF8Encode(str: string): string;
var
  b: Byte;
begin
  for b in BytesOf(UTF8Encode(str)) do
    Result := Format('%s%s%.2x', [Result, '%', b]);
end; //这是给 ISuperObject 准备的方法
procedure Proc(const This, Params: ISuperObject; var Result: ISuperObject);
var
  jo: ISuperObject;
begin
  Form1.Memo1.Clear;
  for jo in Params['responseData.results'] do with Form1.Memo1.Lines do
  begin
    Add(jo.Format('%titleNoFormatting%:'));
    Add(jo.Format('%unescapedUrl%'));
    Add(EmptyStr);
  end;
end; procedure TForm1.Button1Click(Sender: TObject);
const
  u = 'http://www.google.cn/uds/GwebSearch?callback=response&rsz=large&v=1.0&q=';
var
  jo: ISuperObject;
  req: IXMLHTTPRequest;
  url: WideString;
begin
  jo := SO;
  jo.M['response'] := @Proc; {搜索结果将是类似 response(...) 函数格式的字符串}   url := u + ToUTF8Encode(Edit1.Text); {准备搜索地址}   //搜索
  req := CoXMLHTTP.Create;
  req.open('Get', url, False, EmptyParam, EmptyParam);
  req.send(EmptyParam);   //搜索结果在 req.responseText(后付其全部内容), 下面语句将调用上面的 Proc 过程.
  jo[req.responseText]; {这是在本系列"方法"一节用到的第二种调用方法}
end; end.

窗体文件:


object Form1: TForm1
  Left =
  Top =
  Caption = 'Form1'
  ClientHeight =
  ClientWidth =
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch =
  TextHeight =
  object Memo1: TMemo
    Left =
    Top =
    Width =
    Height =
    Align = alLeft
    Lines.Strings = (
      'Memo1')
    ScrollBars = ssBoth
    TabOrder =
    ExplicitHeight =
  end
  object Button1: TButton
    Left =
    Top =
    Width =
    Height =
    Caption = 'Button1'
    TabOrder =
    OnClick = Button1Click
  end
  object Edit1: TEdit
    Left =
    Top =
    Width =
    Height =
    TabOrder =
    Text = 'Delphi'
  end
end

下面是我以 "Delphi" 为关键字搜索返回的 responseText, 可以做个搜索工具了:

response(
{
"responseStatus": 200,
"responseData": {
"cursor": {
"pages": [
{
"label": 1,
"start": "0"
},{
"label": 2,
"start": "8"
},{
"label": 3,
"start": "16"
},{
"label": 4,
"start": "24"
},{
"label": 5,
"start": "32"
},{
"label": 6,
"start": "40"
},{
"label": 7,
"start": "48"
},{
"label": 8,
"start": "56"
}],
"currentPageIndex": 0,
"estimatedResultCount": "6050000",
"moreResultsUrl": "http:\/\/www.google.cn\/search?oe=utf8&ie=utf8&source=uds&start=0&hl=zh-CN&q=Delphi"
},
"results": [
{
"titleNoFormatting": "『Delphi园地』-源码,控件,文档,工具,免费下载,建设专业Delphi资源平台",
"url": "http:\/\/www.delphifans.com\/",
"cacheUrl": "http:\/\/www.google.com\/search?q=cache:gxlSlu0OTqQJ:www.delphifans.com",
"GsearchResultClass": "GwebSearch",
"visibleUrl": "www.delphifans.com",
"content": "提供Delhpi技巧文章、源码、控件、文档、工具等。",
"title": "『<b>Delphi<\/b>园地』-源码,控件,文档,工具,免费下载,建设专业<b>Delphi<\/b>资源平台",
"unescapedUrl": "http:\/\/www.delphifans.com\/"
},{
"titleNoFormatting": "Delphi - 维基百科,自由的百科全书",
"url": "http:\/\/zh.wikipedia.org\/wiki\/Delphi",
"cacheUrl": "http:\/\/www.google.com\/search?q=cache:KPWnJZ_ZuuQJ:zh.wikipedia.org",
"GsearchResultClass": "GwebSearch",
"visibleUrl": "zh.wikipedia.org",
"content": "<b>Delphi<\/b>,是Windows平台下的著名快速应用程序开发工具(Rapid Application Development ,简称RAD)。它的前身是在DOS下的产品BorlandTurbo Pascal,最早的版本由 <b>...<\/b>",
"title": "<b>Delphi<\/b> - 维基百科,自由的百科全书",
"unescapedUrl": "http:\/\/zh.wikipedia.org\/wiki\/Delphi"
},{
"titleNoFormatting": "DELPHI盒子- Delphi源代码控件文档工具下载",
"url": "http:\/\/www.2ccc.com\/",
"cacheUrl": "http:\/\/www.google.com\/search?q=cache:CF650RgvoJkJ:www.2ccc.com",
"GsearchResultClass": "GwebSearch",
"visibleUrl": "www.2ccc.com",
"content": "<b>DELPHI<\/b>源代码、组件、例子、演示及相关工具下载,文档发布,全站包含论坛,笔记等功能 ,每天更新。",
"title": "<b>DELPHI<\/b>盒子- <b>Delphi<\/b>源代码控件文档工具下载",
"unescapedUrl": "http:\/\/www.2ccc.com\/"
},{
"titleNoFormatting": "编程中国>> 技术教程>> 开发语言>> Delphi",
"url": "http:\/\/www.bccn.net\/Article\/kfyy\/delphi\/",
"cacheUrl": "http:\/\/www.google.com\/search?q=cache:vjiBcr2xV14J:www.bccn.net",
"GsearchResultClass": "GwebSearch",
"visibleUrl": "www.bccn.net",
"content": "普通文章, 第二章<b>Delphi<\/b>面向对象的编程方法(一), 06-25. 普通文章 <b>...<\/b> 普通文章, 用 <b>Delphi<\/b>制作以浏览器为界面的应用程序, 08-30. 普通文章, <b>Delphi<\/b> 中串口通讯的实现 <b>...<\/b>",
"title": "编程中国>> 技术教程>> 开发语言>> <b>Delphi<\/b>",
"unescapedUrl": "http:\/\/www.bccn.net\/Article\/kfyy\/delphi\/"
},{
"titleNoFormatting": "Delphi is a leading global supplier for the automotive, computing ...",
"url": "http:\/\/www.delphi.com\/",
"cacheUrl": "http:\/\/www.google.com\/search?q=cache:r5kD35m3Ns0J:www.delphi.com",
"GsearchResultClass": "GwebSearch",
"visibleUrl": "www.delphi.com",
"content": "Supplier of audio systems, modules, and components to manufacturers and replacement parts to the after market worldwide.",
"title": "<b>Delphi<\/b> is a leading global supplier for the automotive, computing <b>...<\/b>",
"unescapedUrl": "http:\/\/www.delphi.com\/"
},{
"titleNoFormatting": "delphi 窑洞",
"url": "http:\/\/www.51delphi.com\/",
"cacheUrl": "http:\/\/www.google.com\/search?q=cache:Kgv5hBXmSFgJ:www.51delphi.com",
"GsearchResultClass": "GwebSearch",
"visibleUrl": "www.51delphi.com",
"content": "基于<b>Delphi<\/b> 的Rich Internet Application开发和应用平台 。 <b>...<\/b> 61449, <b>Delphi<\/b> 7的 Property OldCreateOrder does not exist(1786字节), javer007, 2009-10-12 14:42:48 <b>...<\/b>",
"title": "<b>delphi<\/b> 窑洞",
"unescapedUrl": "http:\/\/www.51delphi.com\/"
},{
"titleNoFormatting": "delphi专栏_软件开发_最专业的程序开发网站_开发者网络_软件_天极网",
"url": "http:\/\/dev.yesky.com\/ysdevdelphi\/",
"cacheUrl": "http:\/\/www.google.com\/search?q=cache:j-qd-w9ESrwJ:dev.yesky.com",
"GsearchResultClass": "GwebSearch",
"visibleUrl": "dev.yesky.com",
"content": "在<b>Delphi<\/b>数据库应用系统的数据录入过程中,有些数据是保存在Excel中的;有些是保存 <b>...<\/b> 为了便于开发数据库应用程序,在<b>Delphi<\/b>集成开发环境中,提供了大量的数据库工具 <b>...<\/b>",
"title": "<b>delphi<\/b>专栏_软件开发_最专业的程序开发网站_开发者网络_软件_天极网",
"unescapedUrl": "http:\/\/dev.yesky.com\/ysdevdelphi\/"
},{
"titleNoFormatting": "Delphi俱乐部",
"url": "http:\/\/www.tommstudio.com\/",
"cacheUrl": "http:\/\/www.google.com\/search?q=cache:9JQ4L48RA1QJ:www.tommstudio.com",
"GsearchResultClass": "GwebSearch",
"visibleUrl": "www.tommstudio.com",
"content": "dephi俱乐部,c#,<b>delphi<\/b>,<b>delphi<\/b>控件,<b>delphi<\/b>源码,<b>delphi<\/b>书籍,商业源码,程序开发,源码 交易,开发,方案, <b>...<\/b> Net,Java,PowerBuilder,PHP,ASP,PERL 免费源码下载,<b>Delphi<\/b>俱乐部 .",
"title": "<b>Delphi<\/b>俱乐部",
"unescapedUrl": "http:\/\/www.tommstudio.com\/"
}]
},
"responseDetails": null
}
)

XE3随笔17:实例 - 模拟 Google 搜索的更多相关文章

  1. Google搜索命令语法大全

    以下是目前所有的Google搜索命令语法,它不同于Google的帮助文档,因为这里介绍 了几个Google不推荐使用的命令语法.大多数的Google搜索命令语法有它特有的使用格式,希望大家能正确使用. ...

  2. 关于python抓取google搜索结果的若干问题

    关于python抓取google搜索结果的若干问题     前一段时间一直在研究如何用python抓取搜索引擎结果,在实现的过程中遇到了很多的问题,我把我遇到的问题都记录下来,希望以后遇到同样问题的童 ...

  3. GOOGLE搜索秘籍完全公开

    一,GOOGLE简介 Google(www.google.com)是一个搜索引擎,由两个斯坦福大学博士生Larry Page与Sergey Brin于1998年9月发明,Google Inc. 于19 ...

  4. 复杂的1秒--图解Google搜索技术

    谷歌(Google),一个非常成功,但又十分神秘,而且带有几分理想化色彩的互联网搜索巨人,它还是一家相当了不起的广告公司,谷歌首页上的那个搜索按钮是其年赢利200亿美元的杀手级应用,也是Interne ...

  5. 【转载】google搜索从入门到精通

    原文地址:http://www.cnblogs.com/helloIT/articles/5095668.html /***************************************** ...

  6. 使用云服务器实现Google搜索

    >>>>>>>>>>>>>>>>>>>>>>>>> ...

  7. google 搜索关键字技巧

    google 搜索关键字技巧 来源  https://www.cnblogs.com/qiudabai/articles/9143328.html inurl: 用于搜索网页上包含的URL. 这个语法 ...

  8. google搜索小技巧

    google搜索小技巧 一.总结 一句话总结:But most people may not be using Google search to its full potential.Want to ...

  9. 运营站点-开放robots后,站内google搜索数量第二天10条左右,第5天搜录9920条,可喜可贺

    开放robots后,站内google搜索数量第二天10条左右,第5天搜录9920条,可喜可贺 2014年4月29日 16:17:56 到目前为之已搜录14000多条,已有客户在网站注册,加入购物车

随机推荐

  1. Asp.net 未处理异常

    页面级捕获未处理异常 - Page 的 Error 事件 Protected Sub Page_Error(ByVal sender As Object, ByVal e As System.Even ...

  2. poi API

    一. POI简介 Apache POI是Apache软件基金会的开放源码函式库,POI提供API给Java程序对Microsoft Office格式档案读和写的功能. 二. HSSF概况 HSSF 是 ...

  3. js计时事件

    通过在一个设定的时间间隔之后来执行代码,而不是在函数被调用后立即执行,我们称之为计时事件. 1. setTimeout()--暂停指定的时间后执行指定的代码 clearTimeout ()--停止se ...

  4. [vivado系列]Vivado软件的下载

    时间:2016.10.27 ------------------ 前言:我们知道vivado软件是用于xilinx的7系列及以上器件的FPGA开发工具. 随着版本的不断更新,也变得越来越庞大.臃肿! ...

  5. 对象化前端表单(Form)提交

    很常见的业务场景,就是前端一个表单,submit给后台,在web.form时代,有from 的runat="server" 配合submit 自动会提交给服务端,然后服务端解析Re ...

  6. Sublime Text 3 汉化小技巧

    Sublime Text 3 简体中文汉化包使用方法 1.将下载的sublime_text3汉化包文件解压,得到的Default.sublime-package 文件.打开sublime text 3 ...

  7. 深入理解js——自由变量和作用域链

    自由变量:在A作用域中使用变量X,却没有在A作用域中声明(在其他作用域中声明),对于A作用域来说X就是一个自由变量. var x=10; function fn(){ var b=20; consol ...

  8. $.grep(array, callback, [invert])过滤,常用

    $.grep(array, callback, [invert])过滤,常用 解释: 使用过滤函数过滤数组元素.此函数至少传递两个参数(第三个参数为true或false,对过滤函数返回值取反,个人觉得 ...

  9. LinckedhashMap原理

    http://zhangshixi.iteye.com/blog/673789 TreeMap的key是有顺序的,是自然顺序,也可以指定比较函数. 但默认不是按插入的顺序.  为了让Map  JSON ...

  10. SQL Cumulative Sum累积求和

    期望结果:  ID  VAL  CumSum  1  10  10  2  20  30  3  30  60 方法一: 使用分析函数 select id,val,sum(val) over ( or ...