UniCode下字符转换

在使用fprintf向文本中写字符串时,只能写入第一个字符,需要将CString转换成char *,现总结在UniCode字符集下的字符转换。

1.CString转char

方法1:T2A、W2A

CString str = _T("");

//声明标识符

USES_CONVERSION;

//T2A和W2A均支持ATL和MFC中的字符转换

char * pFileName = T2A(str);

方法2:WideCharToMultiByte

CString str = _T("");

int n = str.GetLength();    

//获取宽字节字符的大小,大小是按字节计算的

int len = WideCharToMultiByte(CP_ACP,0,str,str.GetLength(),NULL,0,NULL,NULL);

//为多字节字符数组申请空间,数组大小为按字节计算的宽字节字节大小

char * pFileName = new char[len+1];   //以字节为单位

//宽字节编码转换成多字节编码

WideCharToMultiByte(CP_ACP,0,str,str.GetLength(),pFileName,len,NULL,NULL);

pFileName[len+1] = '\0';//多字节字符以'\0'结束

2.charCString

方法1 :A2T、A2W

char * pFileName = "";

USES_CONVERSION;

CString s = A2T(pFileName);

方法2 :MultiByteToWideChar

char * pFileName = "";

//计算char *数组大小,以字节为单位,一个汉字占两个字节

int charLen = strlen(pFileName);

//计算多字节字符的大小,按字符计算。

int len = MultiByteToWideChar(CP_ACP,0,pFileName,charLen,NULL,0);

//为宽字节字符数组申请空间,数组大小为按字节计算的多字节字符大小

TCHAR *buf = new TCHAR[len + 1];

//多字节编码转换成宽字节编码

MultiByteToWideChar(CP_ACP,0,pFileName,charLen,buf,len);

buf[len] = '\0';//添加字符串结尾,注意不是len+1

//将TCHAR数组转换为CString

CString pWideChar;

pWideChar.Append(buf);

//删除缓冲区

delete []buf;

你可能感兴趣的:(UniCode下字符转换)