Sto cercando un metodo o uno snippet di codice per convertire std :: string in LPCWSTR
Sto cercando un metodo o uno snippet di codice per convertire std :: string in LPCWSTR
Risposte:
Grazie per il collegamento all'articolo MSDN. Questo e 'esattamente quello che stavo cercando.
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();
La soluzione è in realtà molto più semplice di qualsiasi altro suggerimento:
std::wstring stemp = std::wstring(s.begin(), s.end());
LPCWSTR sw = stemp.c_str();
Soprattutto, è indipendente dalla piattaforma. h2h :)
reinterpret_cast
. Questo codice non funziona. Non usare. .
char
è solitamente codificato come ANSI. Con la codifica ANSI, i valori da 128 a 255 vengono interpretati utilizzando la tabella codici attualmente attiva. Inserire questi valori in una wchar_t
(codifica UTF-16 su Windows) non produrrà il risultato desiderato. Se vuoi essere preciso, funziona esattamente nel 50% dei casi. Tenendo conto della codifica dei caratteri DBCS, tale percentuale diminuisce ulteriormente.
Se ti trovi in un ambiente ATL / MFC, puoi utilizzare la macro di conversione ATL:
#include <atlbase.h>
#include <atlconv.h>
. . .
string myStr("My string");
CA2W unicodeStr(myStr);
È quindi possibile utilizzare unicodeStr come LPCWSTR. La memoria per la stringa unicode viene creata nello stack e rilasciata, quindi viene eseguito il distruttore per unicodeStr.
Invece di usare uno std :: string, potresti usare uno std :: wstring.
EDIT: Scusa, questo non è più esplicativo, ma devo correre.
Usa std :: wstring :: c_str ()
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();
LPCWSTR lpcwName = std :: wstring (strname.begin (), strname.end ()). C_str ()