如何在C ++(Unicode)中将std :: string转换为LPCWSTR


Answers:


134

感谢您到MSDN文章的链接。这正是我想要的。

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();

4
(发现这个问题是随机浏览的;距离我使用C ++已经很长时间了。)因此,标准库没有std :: string-> std :: wstring转换吗?看起来很奇怪;有充分的理由吗?
多梅尼克2009年

5
如果使用std :: vector <wchar_t>为buf创建存储,那么如果发生任何异常,则将释放临时缓冲区。
杰森·哈里森

81
原因#233关于c ++为何惹恼我。.10行代码进行简单的字符串转换= /
b1nary.atr0phy

2
或者只是说wstring ws(s.begin(),s.end())...?
CJBrew

3
@CJBrew:对于每个问题,都有一个解决方案,即干净,优雅且错误。您的输入基于以下假设:您的输入仅包含ASCII(不是 ANSI)字符。
IInspectable

121

实际上,该解决方案比其他任何建议都容易得多:

std::wstring stemp = std::wstring(s.begin(), s.end());
LPCWSTR sw = stemp.c_str();

最重要的是,它独立于平台。h2h :)


2
对不起,Benny,但这对我不起作用,但是Toran自己的解决方案似乎确实可以正常工作(但是.blegh!)。
伊恩·柯林斯

32
仅当所有字符均为单个字节(即ASCII或ISO-8859-1)时,此方法才有效。任何多字节都将惨遭失败,包括UTF-8。
Mark Ransom

我相信您可以将第一行简化为:std :: wstring stemp(s.begin(),s.end()); 这样可以消除可能的复制,并且看起来更简单。请注意,编译器可能会删除该副本,但这仍然是一个简单的外观。
Kit10 2013年

13
主啊,所有的支持是什么?有时,这个答案仅靠巧合起作用。它完全忽略了字符编码。您不能简单地加宽一个窄字符,并希望它神奇地变成代表相同代码点的宽字符。它在道德上等同于reinterpret_cast此代码不起作用。不使用。
IInspectable

2
@nik:在Windows上,char通常将a编码为ANSI。使用ANSI编码时,将使用当前活动的代码页解释值128到255。将这些值推入wchar_t(在Windows上为UTF-16编码)将不会产生所需的结果。如果要精确,这可以在50%的情况下使用。考虑到DBCS字符编码,该百分比会进一步降低。
IInspectable

9

如果您在ATL / MFC环境中,则可以使用ATL转换宏:

#include <atlbase.h>
#include <atlconv.h>

. . .

string myStr("My string");
CA2W unicodeStr(myStr);

然后,您可以将unicodeStr用作LPCWSTR。unicode字符串的内存在堆栈上创建并释放,然后执行unicodeStr的析构函数。


0

除了使用std :: string,还可以使用std :: wstring。

编辑:对不起,这不是更多解释,但我必须运行。

使用std :: wstring :: c_str()


9
问:“我需要从X转换为Y。” - 答:“找工作,他们在用A而不是X。” 这没用。
IInspectable

不能看到所有树木的森林吗?这很有用,因为它正是我想要的
Charlie

-3
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();

-3

LPCWSTR lpcwName = std :: wstring(strname.begin(),strname.end())。c_str()


2
9年前,最佳答案之一已经提出了该解决方案
Nino Filiu

1
9年前的错和今天的错一样多。注释解释了为什么这仅适用于狭窄的代码单元。
IInspectable
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.