首页 > 代码库 > 将MultiBytes应用转换成Unicode应用
将MultiBytes应用转换成Unicode应用
1,项目属性选择Unicode;
2,添加#include <tchar.h>;
3,所有的""转换成_T("");
4,看具体代码:
for( std::vector<SEARCH_RESP>::iterator iterator=service.m_tDeviceList.begin(); iterator!=service.m_tDeviceList.end(); iterator++ ) { //CString csLine; //csLine.Format(L"*L *%s *%s",iterator->dwDeviceID,iterator->szIpAddr); TCHAR relt[300]; memset(relt,0,300); //strcat("L ",iterator->dwDeviceID); wcscat_s(relt,_T("L ")); wcscat_s(relt,utf8_decode(iterator->dwDeviceID).c_str()); wcscat_s(relt,utf8_decode(iterator->szIpAddr).c_str()); pCMyDialog->m_pCListBox->AddString(relt); //LOG_INFO()<<"AddString : "<<csLine; }
std::wstring utf8_decode(const std::string &str) { int size_needed = MultiByteToWideChar(CP_UTF8, 0, &str[0], (int)str.size(), NULL, 0); std::wstring wstrTo( size_needed, 0 ); MultiByteToWideChar(CP_UTF8, 0, &str[0], (int)str.size(), &wstrTo[0], size_needed); return wstrTo; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。