-
Notifications
You must be signed in to change notification settings - Fork 15
/
strconvert.cpp
62 lines (57 loc) · 1.79 KB
/
strconvert.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "Windows.h"
#include <string>
#include "strconvert.h"
/*
* 将 ascii 编码的 wstring 转换为 utf8 编码的 string
*/
std::string wstrtostrutf8(const std::wstring &wstr)
{
// Convert a Unicode string to an ASCII string
size_t strLen = WideCharToMultiByte(CP_UTF8, 0, wstr.c_str(), (int)wstr.length(), NULL, 0, NULL, NULL);
std::string strTo;
char *szTo = new char[strLen + 1];
szTo[strLen] = '\0';
WideCharToMultiByte(CP_UTF8, 0, wstr.c_str(), -1, szTo, (int)strLen, NULL, NULL);
strTo = szTo;
delete[] szTo;
return strTo;
}
/*
* 将 utf8 编码的 string 转换为 wstring
* 如果需要把 utf8 编码的 string 转换为本地编码的 string
* 在调用一次 wstrtostr
*/
std::wstring strtowstrutf8(const std::string &str)
{
// Convert an ASCII string to a Unicode String
std::wstring wstrTo;
wchar_t *wszTo = new wchar_t[str.length() + 1];
wszTo[str.size()] = L'\0';
MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, wszTo, (int)str.length());
wstrTo = wszTo;
delete[] wszTo;
return wstrTo;
}
std::string wstrtostr(const std::wstring &wstr)
{
// Convert a Unicode string to an ASCII string
size_t strLen = WideCharToMultiByte(CP_ACP, 0, wstr.c_str(), (int)wstr.length(), NULL, 0, NULL, NULL);
std::string strTo;
char *szTo = new char[strLen + 1];
szTo[strLen] = '\0';
WideCharToMultiByte(CP_ACP, 0, wstr.c_str(), -1, szTo, (int)strLen, NULL, NULL);
strTo = szTo;
delete[] szTo;
return strTo;
}
std::wstring strtowstr(const std::string &str)
{
// Convert an ASCII string to a Unicode String
std::wstring wstrTo;
wchar_t *wszTo = new wchar_t[str.length() + 1];
wszTo[str.size()] = L'\0';
MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, wszTo, (int)str.length());
wstrTo = wszTo;
delete[] wszTo;
return wstrTo;
}