码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi 编码转换 Unicode gbk big5(使用LCMapString设置区域后,再用API转换)

时间:2016-06-28 21:54:37      阅读:408      评论:0      收藏:0      [点我收藏+]

标签:

原文:http://blog.dream4dev.com/article.asp?id=17

function UnicodeEncode(Str: string; CodePage: integer): WideString;
var
 Len: integer;
begin
 Len := Length(Str) + 1;
 SetLength(Result, Len);
 Len := MultiByteToWideChar(CodePage, 0, PChar(Str), -1, PWideChar(Result), Len);
 SetLength(Result, Len - 1); //end is #0
end;

function UnicodeDecode(Str: WideString; CodePage: integer): string;
var
 Len: integer;
begin
 Len := Length(Str) * 2 + 1; //one for #0
 SetLength(Result, Len);
 Len := WideCharToMultiByte(CodePage, 0, PWideChar(Str), -1, PChar(Result), Len, nil, nil);
 SetLength(Result, Len - 1);
end;

function Gb2Big5(Str: string): string;
begin
 SetLength(Result, Length(Str));
 LCMapString(GetUserDefaultLCID, LCMAP_TRADITIONAL_CHINESE,
 PChar(Str), Length(Str),
 PChar(Result), Length(Result));
 Result := UnicodeDecode(UnicodeEncode(Result, 936), 950);
end;

function Big52Gb(Str: string): string;
begin
 Str := UnicodeDecode(UnicodeEncode(Str, 950), 936);
 SetLength(Result, Length(Str));
 LCMapString(GetUserDefaultLCID, LCMAP_SIMPLIFIED_CHINESE,
 PChar(Str), Length(Str),
 PChar(Result), Length(Result));
end;
 
function Utf8Encode(const WS: WideString): UTF8String;
var
 L: Integer;
 Temp: UTF8String;
begin
 Result := ‘;
 if WS = ‘ then Exit;
 SetLength(Temp, Length(WS) * 3); // SetLength includes space for null terminator
 L := UnicodeToUtf8(PChar(Temp), Length(Temp) + 1, PWideChar(WS), Length(WS));
 if L > 0 then
 SetLength(Temp, L - 1)
 else
 Temp := ‘;
 Result := Temp;
end;

http://www.vckbase.com/module/articleContent.php?id=4387

Delphi 编码转换 Unicode gbk big5(使用LCMapString设置区域后,再用API转换)

标签:

原文地址:http://www.cnblogs.com/findumars/p/5624907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!