Delphi 转换 UTF8 字符为 Unicode 字符


Function U8ToUnicode(szU8: PAnsiChar; var wszString: PWideChar): Integer;

Begin            //  UTF8 to Unicode
result := 0;
if szU8 = nil then exit;
wszString := Pointer(LocalAlloc(0, lstrlenA(szU8) * 2 + 1));
FillChar(wszString^, lstrlenA(szU8) * 2, 0);

Utf8ToUnicode(wszString, szU8, lstrlenA(szU8));

result := 1;

MessageBoxW(0, wszString, '已转换', MB_OK)

end;



Function U8ToUnicode(szU8: PAnsiChar; var wszString: PWideChar): Integer;

Begin

result := 0;

if szU8 = nil then exit;
result := MultiByteToWideChar(CP_UTF8, 0, szU8, lstrlenA(szU8), nil, 0);
wszString := Pointer(LocalAlloc(0, result + 1));  //wchar_t*
//转换
MultiByteToWideChar(CP_UTF8, 0, szU8, lstrlenA(szU8), wszString, result);
//加上'/0'
if (result > 0) and (result < (lstrlenW(wszString) + 1)) then LstrcatW(wszString, ''#0);
result := 1;
MessageBoxW(0, wszString, '已转换', MB_OK)
end;

你可能感兴趣的:(源代码)