Michael, regarding this unicode problem, all the code has already been posted in this thread.
program Test; uses FPJson, JsonParser, JsonTools; const UnicodeChars = '{ "name": "Joe®Schmoe", "occupation": "bank teller \u00Ae " }'; function VerifyUnicodeCharsFPJson: Boolean; var N: TJSONData; begin N := GetJSON(UnicodeChars); Result := (N.Items[0].AsUnicodeString = 'Joe®Schmoe') and (N.Items[1].AsUnicodeString = 'bank teller ® '); N.Free; end; function VerifyUnicodeCharsJsonTools: Boolean; const UnicodeChars = '{ "name": "Joe®Schmoe", "occupation": "bank teller \u00Ae " }'; var N: TJsonNode; begin N := TJsonNode.Create; N.Parse(UnicodeChars); Result := (N.Child(0).AsString = 'Joe®Schmoe') and (N.Child(1).AsString = 'bank teller ® '); N.Free; end; begin WriteLn('FPJson Handles unicode chars correctly: ', VerifyUnicodeCharsFPJson); WriteLn('JsonTools Handles unicode chars correctly: ', VerifyUnicodeCharsJsonTools); end. Output: FPJson Handles unicode chars correctly: FALSE JsonTools Handles unicode chars correctly: TRUE Tested on both Linux and Windows with the same results. Differing versions of FPC on differing platforms and other people have verified the same result. Try the tests yourself. Maybe you can figure out what's going wrong.
-- _______________________________________________ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus