我正在为复杂的应用程序编写一个模块,我的模块应该处理由Web服务器返回的json响应。所以,我的问题是如何解码这种文本:
\u041f\u043e\u0438\u0441\u043a \u043f\u043e \u0444\u0430\u043c\u0438\u043b\u0438\u0438, \u0438\u043c\u0435\u043d\u0438 (\u043e\u0442\u0447\u0435\u0441\u0442\u0432\u0443
这是西里尔文本,Mozilla Firefox应该显示它。我该如何处理这些人?我在Delphi 2010上。
答案 0 :(得分:14)
您可以使用Delphi 2010中包含的DBXJSON
单元
uses
DBXJSON;
const
JsonUt8 ='"\u041f\u043e\u0438\u0441\u043a \u043f\u043e \u0444\u0430\u043c\u0438\u043b\u0438\u0438, \u0438\u043c\u0435\u043d\u0438 (\u043e\u0442\u0447\u0435\u0441\u0442\u0432\u0443"';
procedure TForm59.Button1Click(Sender: TObject);
var
LJSONValue: TJSONValue;
begin
LJSONValue:=TJSONObject.ParseJSONValue(TEncoding.UTF8.GetBytes(JsonUt8),0);
Edit1.Text:=LJSONValue.ToString;
end;
答案 1 :(得分:0)
好的伙计们,这里有完整的代码,让我可以解决这个问题:
function Unescape(const s: AnsiString): string;
var
i: Integer;
j: Integer;
c: Integer;
begin
// Make result at least large enough. This prevents too many reallocs
SetLength(Result, Length(s));
i := 1;
j := 1;
while i <= Length(s) do begin
if s[i] = '\' then begin
if i < Length(s) then begin
// escaped backslash?
if s[i + 1] = '\' then begin
Result[j] := '\';
inc(i, 2);
end
// convert hex number to WideChar
else if (s[i + 1] = 'u') and (i + 1 + 4 <= Length(s))
and TryStrToInt('$' + string(Copy(s, i + 2, 4)), c) then begin
inc(i, 6);
Result[j] := WideChar(c);
end else begin
raise Exception.CreateFmt('Invalid code at position %d', [i]);
end;
end else begin
raise Exception.Create('Unexpected end of string');
end;
end else begin
Result[j] := WideChar(s[i]);
inc(i);
end;
inc(j);
end;
// Trim result in case we reserved too much space
SetLength(Result, j - 1);
end;
const
NormalizationC = 1;
function NormalizeString(NormForm: Integer; lpSrcString: PWideChar; cwSrcLength: Integer;
lpDstString: PWideChar; cwDstLength: Integer): Integer; stdcall; external 'Normaliz.dll';
function Normalize(const s: string): string;
var
newLength: integer;
begin
// in NormalizationC mode the result string won't grow longer than the input string
SetLength(Result, Length(s));
newLength := NormalizeString(NormalizationC, PChar(s), Length(s), PChar(Result), Length(Result));
SetLength(Result, newLength);
end;
function UnescapeAndNormalize(const s: AnsiString): string;
begin
Result := Normalize(Unescape(s));
end;
代码是从this answer
中窃取的答案 2 :(得分:0)
如果有人需要简单的功能来解码JSON转义的字符串:
function JSONUnescape(const Source: string; CRLF: string = #13#10): string;
const
ESCAPE_CHAR = '\';
QUOTE_CHAR = '"';
EXCEPTION_FMT = 'Invalid escape at position %d';
var
EscapeCharPos, TempPos: Integer;
Temp: string;
IsQuotedString: Boolean;
begin
result := '';
IsQuotedString := (Source[1] = QUOTE_CHAR) and
(Source[Length(Source)] = QUOTE_CHAR);
EscapeCharPos := Pos(ESCAPE_CHAR, Source);
TempPos := 1;
while EscapeCharPos > 0 do
begin
result := result + Copy(Source, TempPos, EscapeCharPos - TempPos);
TempPos := EscapeCharPos;
if EscapeCharPos < Length(Source) - Integer(IsQuotedString) then
case Source[EscapeCharPos + 1] of
't':
Temp := #9;
'n':
Temp := CRLF;
'\':
Temp := '\';
'"':
Temp := '"';
'u':
begin
if EscapeCharPos + 4 < Length(Source) - Integer(IsQuotedString) then
Temp := Chr(StrToInt('$' + Copy(Source, EscapeCharPos + 2, 4)))
else
raise Exception.Create(Format(EXCEPTION_FMT, [EscapeCharPos]));
Inc(TempPos, 4);
end;
else
raise Exception.Create(Format(EXCEPTION_FMT, [EscapeCharPos]));
end
else
raise Exception.Create(Format(EXCEPTION_FMT, [EscapeCharPos]));
Inc(TempPos, 2);
result := result + Temp;
EscapeCharPos := Pos(ESCAPE_CHAR, Source, TempPos);
end;
result := result + Copy(Source, TempPos, Length(Source) - TempPos + 1);
end;
用法:
JSONUnescape('\u2764Love Delphi\u2764');
// Returns '❤Love Delphi❤'
JSONUnescape('"\u2764Love\tDelphi\u2764"');
// Returns '"❤Love Delphi❤"';
JSONUnescape('\\\Invalid escaped text');
// Raises and exception 'Invalid escape at position 3'