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 inputbox 用法

Delphi 数据类型cardinal 怎么转换成 string?

Delphi中控件数组批量赋值

Delphi使用project manager添加一个java库到你的应用程序

Delphi keydown与keyup、keypress的区别

Delphi 只限制到4位小数级别

Delphi 调用viewer-windows10 图像浏览器

Delphi playsound(); 停止播放

图解qq群如何快速找到自己想要的Delphi资源

Delphi分别连接ms sqlserver、oracle和access数据库的连接字符串

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



打赏

取消

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

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

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

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

评论

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