mormot生成和解析json
mormot生成和解析json
delphi7测试并通过。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | unit Unit1; interface uses syncommons, Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class (TForm) Button1: TButton; Button2: TButton; Button3: TButton; Memo1: TMemo; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); procedure Button3Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); //解析json var js: TDocVariantData; json: string ; begin json := '{"tt":"1"}' ; js.InitJSON(json); Caption := js.GetValueByPath([ 'tt' ]); end; (* { "blockCount" :3, "blocks" :[ { "FieldCount" :1, "fields" :[{ "Name" : "姓名" , "Value" :[ "张1" , "张2" , "张三" ]}]}, { "FieldCount" :1, "fields" :[{ "Name" : "单位" , "Value" :[ "华2" , "张2" , "张三" ]}]}, { "FieldCount" :1, "fields" :[{ "Name" : "单位" , "Value" :[ "华拓" , "张2" , "张三" ]}]} ] } *) procedure TForm1.Button2Click(Sender: TObject); //解析json var js, js2, js3: TDocVariantData; begin js.InitJSONFromFile( 'tt.json' ); caption := DocVariantData(js.GetValueByPath([ 'blocks' ])).value[0]; //{"FieldCount":1, "fields":[{"Name":"姓名", "Value":["张1", "张2","张三"]}]} js2.InitJSON(caption); caption := DocVariantData(js2.GetValueByPath([ 'fields' ])).value[0]; //{"Name":"姓名", "Value":["张1", "张2","张三"]} js3.InitJSON(caption); Caption := js3.U[ 'Name' ] + DocVariantData(js3.GetValueByPath([ 'Value' ])).value[0]; //姓名张1 caption := DocVariantData(DocVariantData(js.A[ 'blocks' ].Value[1]).A[ 'fields' ].Value[0]).A[ 'Value' ].Value[0]; //华2 end; (* { "Name" : "Str0" , "Age" :0, "List" :[1, "Hello" ,5,{ "name" : "咏南中间件" , "age" :99}]} { "Name" : "Str1" , "Age" :1, "List" :[1, "Hello" ,5,{ "name" : "咏南中间件" , "age" :99}]} *) procedure TForm1.Button3Click(Sender: TObject); //生成json var jo: Variant; i: Int64; begin TDocVariant.New(jo); i := 0; while i < 2 do begin jo.Name := 'Str' + IntToStr(i); jo.Age := i; jo.List := _JSon( '[1,"Hello",5,{"name":"咏南中间件","age":99}]' ); Memo1.Lines.Add(VariantSaveJSON(jo)); inc(i); end; end; end. |
本文来自博客园,作者:{咏南中间件},转载请注明原文链接:https://www.cnblogs.com/hnxxcxg/p/14827165.html
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
2015-05-30 socket发送和接收数据