delphi xe5 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,DBXJSON;

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

var
  Form1: TForm1;

implementation

{$R *.dfm}

const
  GJSONString =
    '{' +
    '    "name": {'+
    '        "A JSON Object": {' +
    '          "id": "1"' +
    '        },' +
    '        "Another JSON Object": {' +
    '          "id": "2"' +
    '        }' +
    '    },' +
    '    "totalobjects": "2"' +
    '}';

procedure TForm1.Button1Click(Sender: TObject);
var
  LJSONObject: TJSONObject;
  Value: TJSONValue;
begin
  LJSONObject := nil;
  try
    LJSONObject := TJsonObject.Create;
    Value := TJSONValue.Create;
    { convert String to JSON }
    LJSONObject.Parse(BytesOf(GJSONString), 0);
    Value :=LJSONObject.GetValue('name');
    ShowMessage(Value.ToString);
  finally
    LJSONObject.Free;
  end;
end;

end.
http://docwiki.embarcadero.com/RADStudio/XE5/en/JSON

相关阅读 >>

Delphi unigui 调用js

Delphi 实现如何枚举所有打开的ie选项卡

Delphi 链接文件名合并

Delphi中用tlistview显示数据库数据

Delphi提取网页中的图片

Delphi检测用户超过5分钟没有操作键盘或鼠标

Delphi 关闭进程方法

Delphi comobj调用wmplayer播放音乐

Delphi format中的换行符号是什么

Delphi 获取cpu monitor使用率

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



打赏

取消

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

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

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

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

评论

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