任何人都可以帮忙将CString
转换为wchar_t
?
String csFileName = "";
csFileName.Format("D:\\test\\test %d.jpg", nFile); nFile += 1;
wchar_t *messageArray = static_cast< wchar_t *>(csFileName); wchar_t
firstCharacter = csFileName[0]; ImageFileParams.pwchFileName =
(wchar_t *)(&csFileName);
答案 0 :(得分:3)
CString
已启用,则 CStringW
定义为UNICODE
。所以你可以按原样使用它。它确实实现了强制转换运算符LPCWSTR
- &gt; const wchar*
如果MBCS CString
被定义为CStringA
。在这种情况下,您可以简单地执行以下操作:
CStringA str = "Hello";
CStringW wideStr = str;
就是这样。
以下是方便的转换工具:
// UTF8 conversion
CStringA CUtility::UTF16toUTF8(const CStringW& utf16)
{
return CW2A(utf16, CP_UTF8);
}
CStringW CUtility::UTF8toUTF16(const CStringA& utf8)
{
return CA2W(utf8, CP_UTF8);
}
答案 1 :(得分:1)
对于跨平台解决方案,您可以使用utf8rewind:
std::wstring towide(const std::string& text)
{
std::wstring converted;
int32_t errors;
size_t size_in_bytes = utf8towide(text.c_str(), text.length(), nullptr, 0, &errors);
if (size_in_bytes == 0 ||
errors != UTF8_ERR_NONE)
{
return converted;
}
converted.resize(size_in_bytes);
utf8towide(text.c_str(), text.length(), &converted[0], size_in_bytes, nullptr);
return converted;
}
std::string toansi(const std::wstring& text)
{
std::string converted;
int32_t errors;
size_t size_in_bytes = widetoutf8(text.c_str(), text.length(), nullptr, 0, &errors);
if (size_in_bytes == 0 ||
errors != UTF8_ERR_NONE)
{
return converted;
}
converted.resize(size_in_bytes);
widetoutf8(text.c_str(), text.length(), &converted[0], size_in_bytes, nullptr);
return converted;
}
答案 2 :(得分:0)
或者这个:
std::wstring StringToWString(const std::string & s)
{
std::wstring temp(s.length(),L' ');
std::copy(s.begin(), s.end(), temp.begin());
return temp;
}
反过来:
std::string WCharBuf2String(WCHAR* wchar_buf)
{
char narrow_buf[260];
char DefChar = ' ';
WideCharToMultiByte(CP_ACP, 0, wchar_buf, -1, narrow_buf, 260, &DefChar, NULL);
return std::string (narrow_buf);
}