zoukankan      html  css  js  c++  java
  • JSON解析

    //需要引入superobject单元,内容太多请联系本人获取

    unit Unit1;

    interface

    uses
    Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
    Dialogs, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,
    IdHTTP, StdCtrls,msxml;

    type
    TForm1 = class(TForm)
    IdHTTP1: TIdHTTP;
    memo1: TMemo;
    procedure FormCreate(Sender: TObject);
    private
    { Private declarations }
    public
    HttpReq: IXMLHttpRequest;
    { Public declarations }
    end;

    var
    Form1: TForm1;

    implementation

    uses DateUtils,superobject;

    {$R *.dfm}

    procedure TForm1.FormCreate(Sender: TObject);
    var
    url: string;
    vJson: ISuperObject;
    begin
    HttpReq := CoXMLHTTPRequest.Create;
    url := 'http://www.weather.com.cn/weather/101120201.shtml';
    HttpReq.open('Get', Url, False, EmptyParam, EmptyParam);
    HttpReq.send(EmptyParam);//开始搜索
    Url := HttpReq.responseText;

    memo1.Lines.Add(url);
    exit;

    vjson:=so(url);
    Memo1.Lines.Clear;
    if vJson['weatherinfo'].AsString<>'' then
    begin
    vjson:=so(vJson['weatherinfo'].AsString);
    memo1.Lines.Add('城市:'+vJson['city'].AsString );
    Memo1.Lines.Add('今日天气('+vJson['date_y'].AsString+' '+vjson['week'].asstring+'):');
    Memo1.Lines.Add(' 温度:'+vjson['temp1'].asstring);
    Memo1.Lines.Add(' 天气:'+vjson['weather1'].asstring);
    Memo1.Lines.Add(' 风力:'+vjson['wind1'].asstring);

    Memo1.Lines.Add('明日天气('+FormatDateTime('YYYY年MM月DD日 ',DateUtils.IncDay(now))+'):');
    Memo1.Lines.Add(' 温度:'+vjson['temp2'].asstring);
    Memo1.Lines.Add(' 天气:'+vjson['weather2'].asstring);
    Memo1.Lines.Add(' 风力:'+vjson['wind2'].asstring);

    Memo1.Lines.Add(FormatDateTime('YYYY年MM月DD日 ',DateUtils.IncDay(now,2))+':');
    Memo1.Lines.Add(' 温度:'+vjson['temp3'].asstring);
    Memo1.Lines.Add(' 天气:'+vjson['weather3'].asstring);
    Memo1.Lines.Add(' 风力:'+vjson['wind3'].asstring);

    Memo1.Lines.Add(FormatDateTime('YYYY年MM月DD日 ',DateUtils.IncDay(now,3))+':');
    Memo1.Lines.Add(' 温度:'+vjson['temp4'].asstring);
    Memo1.Lines.Add(' 天气:'+vjson['weather4'].asstring);
    Memo1.Lines.Add(' 风力:'+vjson['wind4'].asstring);

    Memo1.Lines.Add(FormatDateTime('YYYY年MM月DD日 ',DateUtils.IncDay(now,4))+':');
    Memo1.Lines.Add(' 温度:'+vjson['temp5'].asstring);
    Memo1.Lines.Add(' 天气:'+vjson['weather5'].asstring);
    Memo1.Lines.Add(' 风力:'+vjson['wind5'].asstring);
    end;
    end;

    end.

  • 相关阅读:
    怎么让图片居中显示?
    上传代码出现弹出框“请确保已在git中配置您的user.name和user.email”解决方法
    window.open()下载文件: 在当前页面打开方法
    修改网站颜色为黑白 (100% 灰度)/全页置灰
    ZMQ简单使用
    CCXT
    Python描述符详解
    自定义序列的修改、散列和切片
    使用__slots__类属性节省空间
    QGraphicsView实现虚拟摇杆
  • 原文地址:https://www.cnblogs.com/zyb2016/p/6126523.html
Copyright © 2011-2022 走看看