mcJson
https://github.com/hydrobyte/McJSON
一个用于快速 JSON 解析的Delphi/Lazarus/C++Builder简单的小类。
uses McJSON; ... function Test99(out Msg: string): Boolean; var Json: TMcJsonItem; i: Integer; begin Msg := 'Test: Github readme.md content'; Json := TMcJsonItem.Create(); try try // add some pairs. Json.Add('key1').AsInteger := 1; Json.Add('key2').AsBoolean := True; Json.Add('key3').AsNumber := 1.234; Json.Add('key4').AsString := 'value 1'; // add an array Json.Add('array', jitArray); for i := 1 to 3 do Json['array'].Add.AsInteger := i; // save a backup to file if (Json['array'].Count = 3) then Json.SaveToFile('test99.json'); // remove an item Json.Delete('array'); // oops, load the backup if (Json.Count = 4) then Json.LoadFromFile('test99.json'); // test final result Result := (Json.AsJSON = '{"key1":1,"key2":true,"key3":1.234,"key4":"value 1","array":[1,2,3]}'); except Result := False; end; finally Json.Free; end; end;
将产生\test\test99.json
:
{
"key1": 1,
"key2": true,
"key3": 1.234,
"key4": "value 1",
"array": [
1,
2,
3
]
}
本文来自博客园,作者:{咏南中间件},转载请注明原文链接:https://www.cnblogs.com/hnxxcxg/p/17218523.html