参考博客:https://blog.csdn.net/qq_41015048/article/details/102558047 std::wstring_convert template < class Codecvt, class Elem = wchar_t, class Wide_alloc ...
分类:
编程语言 时间:
2020-02-12 18:22:11
阅读次数:
99
将这两行的注释去掉就可以了。 另外,如果项目使用的是Unicode设置,则可以在pugiconfig.hpp中: // Uncomment this to enable wchar_t mode #define PUGIXML_WCHAR_MODE 将wchar模式打开即可。 ...
分类:
其他好文 时间:
2020-02-10 09:50:27
阅读次数:
60
``` void CtestDlg::OnBnClickedButton1() { wchar_t a1[12], a2[12], a3[12]; //方法一 GetWindowText //GetDlgItem(IDC_EDIT_1)->GetWindowText(a1,12); //GetDlg... ...
分类:
其他好文 时间:
2020-02-06 22:49:41
阅读次数:
91
1.定义并且输出 wchar_t* pwchello = L"a我"; // 2 Hiragana characters wprintf(L"Convert to multibyte string:%s\n",pwchello); 2.windosapi 转换 https://docs.micros ...
分类:
其他好文 时间:
2020-01-21 23:37:33
阅读次数:
91
``` #include #include #include #pragma comment(lib, "Mpr.lib") using namespace std; int wmain(int argc,wchar_t * argv[]) { /* DWORD WNetAddConnection2... ...
分类:
其他好文 时间:
2020-01-14 09:17:14
阅读次数:
97
char*转化为CString CString转化为char * CString转化为wchar_t *: wchar_t *pc = cStr.GetBuffer(); BYTE以数值的形式转化为CString,并拼接起来: CString cStr; BYTE * p3 = new BYTE[3 ...
分类:
编程语言 时间:
2020-01-14 00:12:08
阅读次数:
114
网络配置相关命令 nmtui //图形化网卡配置 systemctl = system control systemctl restart network //重启网卡 systemctl statue network //查询网卡状态 ip address show eth0 ip a s eth ...
分类:
系统相关 时间:
2020-01-11 20:31:02
阅读次数:
101
原文地址: 1、c++ char*和wchar*互相转换 2、C++ WINDOWS下 wchar_t *和char * 相互转化总结篇 ...
分类:
编程语言 时间:
2020-01-09 00:48:46
阅读次数:
199
原文:https://blog.csdn.net/aachangs/article/details/87820818 数据库编码问题 新手入坑,第一次使用oracle数据库,还是与mysql略有不同,首先在插入数据时的SQL语法有很大不同,mysql写法: 1 insert into tablena ...
分类:
数据库 时间:
2020-01-03 19:43:56
阅读次数:
97