我正在寻找一种方法,或者将std :: string转换为LPCWSTR的代码片段
答案 0 :(得分:119)
感谢MSDN文章的链接。这正是我所寻找的。 p>
std::wstring s2ws(const std::string& s)
{
int len;
int slength = (int)s.length() + 1;
len = MultiByteToWideChar(CP_ACP, 0, s.c_str(), slength, 0, 0);
wchar_t* buf = new wchar_t[len];
MultiByteToWideChar(CP_ACP, 0, s.c_str(), slength, buf, len);
std::wstring r(buf);
delete[] buf;
return r;
}
std::wstring stemp = s2ws(myString);
LPCWSTR result = stemp.c_str();
答案 1 :(得分:101)
解决方案实际上比任何其他建议容易得多:
std::wstring stemp = std::wstring(s.begin(), s.end());
LPCWSTR sw = stemp.c_str();
最重要的是,它与平台无关。 h2h:)
答案 2 :(得分:9)
如果您在ATL / MFC环境中,可以使用ATL转换宏:
#include <atlbase.h>
#include <atlconv.h>
. . .
string myStr("My string");
CA2W unicodeStr(myStr);
然后,您可以将unicodeStr用作LPCWSTR。 unicode字符串的内存在堆栈上创建并释放,然后untruodeStr的析构函数执行。
答案 3 :(得分:1)
我更喜欢使用标准转换器:
#include <codecvt>
std::string s = "Hi";
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> converter;
std::wstring wide = converter.from_bytes(s);
LPCWSTR result = wide.c_str();
请在此答案中找到更多详细信息:https://stackoverflow.com/a/18597384/592651
答案 4 :(得分:1)
如果您使用的是 QT,那么您可以转换为 QString,然后 myqstring.toStdWString() 就可以了。
答案 5 :(得分:0)
同Toran Billups's answer, 除了我们应该知道:
C++ 标准对 refetchQueries
方法有规则,
这允许我们使用 .c_str()
(而不是不必要的分配和删除)。
const_cast
答案 6 :(得分:-1)
您可以使用std :: wstring。
,而不是使用std :: string编辑:对不起,这不是更多的解释,但我必须运行。
使用std :: wstring :: c_str()
答案 7 :(得分:-1)
LPCWSTR lpcwName = std :: wstring(strname.begin(),strname.end())。c_str()
答案 8 :(得分:-1)
就这么简单,无需应用任何自定义方法。试试这个:
string s = "So Easy Bro"
LPCWSTR wide_string;
wide_string = CA2T(s.c_str());
我认为,它会奏效。
答案 9 :(得分:-2)
string myMessage="helloworld";
int len;
int slength = (int)myMessage.length() + 1;
len = MultiByteToWideChar(CP_ACP, 0, myMessage.c_str(), slength, 0, 0);
wchar_t* buf = new wchar_t[len];
MultiByteToWideChar(CP_ACP, 0, myMessage.c_str(), slength, buf, len);
std::wstring r(buf);
std::wstring stemp = r.C_str();
LPCWSTR result = stemp.c_str();