I\'m using Delphi 2010 and superobject library.
I have understand how to parse json-file, but I have no ideas how to create json?
The algor
A very good library for that is the LkJson: http://sourceforge.net/projects/lkjson/
var jsText : String; jsObj : TlkJSONobject; begin
jsObj:=TlkJSON.ParseText(jsText) as TlkJSONobject;
jsText := TlkJSON.GenerateText(jsObj);