我有这个json,我想获取 fname 值。 我该怎么用Delphi
{
"root":[
{
"customers":[
{
"fname":"George Makris",
"Age":12
}
]
}
]
}
这是我现在正在做的事情,但我不认为这是最核心的方法
procedure TForm1.Button1Click(Sender: TObject);
var s,json:string;
myObj:TJSONObject;
myarr:TJSONArray;
begin
json:='{"root":[{"customers":[ { "fname":"George Makris","Age":12}]}]}';
myObj := TJSONObject.ParseJSONValue(json) as TJSONObject;
myarr := myObj.GetValue('root') as TJSONArray;
myObj := myarr.Items[0] as TJSONObject;
myarr := myObj.GetValue('customers') as TJSONArray;
myObj := myarr.Items[0] as TJSONObject;
s := myObj.GetValue('fname').value;
showmessage(s);
end;
答案 0 :(得分:4)
您的示例很接近,但是会泄漏内存,特别是ParseJSONValue的结果。
我更喜欢使用TryGetValue来验证内容是否存在。它还通过使用的参数推断类型。这是两者的无泄漏示例。
procedure TForm3.btnStartClick(Sender: TObject);
var
s, JSON: string;
jo: TJSONObject;
myarr: TJSONArray;
begin
JSON := '{"root":[{"customers":[ { "fname":"George Makris","Age":12}]}]}';
jo := TJSONObject.ParseJSONValue(JSON) as TJSONObject;
try
if jo.TryGetValue('root', myarr) and (myarr.Count > 0) then
if myarr.Items[0].TryGetValue('customers', myarr) and (myarr.Count > 0) then
if myarr.Items[0].TryGetValue('fname', s) then
showmessage(s);
finally
jo.Free;
end;
end;