来源:http://ticktick.blog.51cto.com/823160/317550
//----------------ANSI字符串转换为UNICODE字符串----------------------//
// 待转换的数组
char szDCBparam[50] = {'0','1','\0'};
// 计算需要的缓冲区大小
DWORD dwNum = MultiByteToWideChar (CP_ACP, 0, szDCBparam, -1, NULL, 0);
// 分配存放转换后数据的缓冲区
wchar_t *pwText = new wchar_t[dwNum] ;
// 转换后的数据存放在pwText所指向的空间
if (!MultiByteToWideChar (CP_ACP, 0, szDCBparam, -1, pwText, dwNum))
{
return;
}
// 注: 如果是char型数组转CString,直接使用CString szTest = CString(szDCBparam);
//----------------UNICODE字符串转换为ANSI字符串----------------------//
//----------------将CString转为char型数组---------------------------//
// 待转换的数据
CString szErrorInfo = _T("this is a test string!");
// 保存错误信息的ANSI字符串的缓冲区,注意,缓冲区要足够大
char InfoString[100];
// 转换后的数据存放在InfoString数组中
if (!WideCharToMultiByte(CP_ACP,0,LPCTSTR(szErrorInfo),-1,InfoString,100,NULL,NULL))
{
return;
}
//----------------将CString转为string----------------------//
CString cstr=_T("test");
std::string str = (CStringA)cstr;
// 注意,在vs2008下,使用std::string temp = cstr.GetBuffer(0)不行。
//----------------将string转为CString----------------------//
std::string strTest = "test";
CString cstrTest = CString(strTest.c_str());