Delphi IdHTTP Http.Get 获取json数据


本文整理自网络,侵删。

 
unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;

type
  TForm1 = class(TForm)
    Memo1: TMemo;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses
  IdBaseComponent,
  IdComponent,
  IdTCPConnection,
  IdTCPClient,
  IdHTTP,
  Math;



function Parse(text, sol, sag: string): String;    /// Function Author: Ali Zairov
begin
  Delete(text, 1, Pos(sol, text) + Length(sol) - 1);
  Result := Copy(text, 1, Pos(sag, text) - 1);
end;


Function WTemperature(APIID: String; City: String): String;
var
  XML: TStringList;
  Http: TIdHTTP;
begin
  XML := TStringList.Create;
  Http := TIdHTTP.Create(Nil);
  XML.Text := Http.Get('http://mobsec-dianhua.baidu.com/dianhua_api/open/location?tel=手机号');
 Result := Parse(XML.Text, 'location":', '}},');//Copy(Parse(XML.Text, 'location":', '}},'), 0, 10);
end;


procedure TForm1.Button1Click(Sender: TObject);
begin
Memo1.Text:=WTemperature('','');
end;

end.

相关阅读 >>

Delphi xe中使用tchart绘制平滑曲线

Delphi 压缩图片(bmp、jpg、png)

Delphi winapi: getparent - 获取指定窗口的父窗口句柄

Delphi 中 使用 tidhttp 提交post数据

Delphi listbox 使用

Delphi twebbrowser静音

Delphi中判断webbrowser的页面是否加载完成

Delphi xe android platform uses-permission[2] androidmanifest.xml 配置

Delphi 如何在程序中动态设置墙纸(使用iactivedesktop接口)

Delphi 时间到就触发事件

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...