12 2018 档案

摘要:C++原型 extern "C" __declspec(dllexport) const char* GetUnicoide(const char* gb2312) { int len = MultiByteToWideChar(CP_ACP, 0, gb2312, -1, NULL, 0); wchar_t* wstr = new wchar_t[len+1]; memset(ws... 阅读全文
posted @ 2018-12-11 15:12 来了啊老弟 阅读(4230) 评论(0) 推荐(0)
摘要:有些时候,编码不正确导致中文乱码,用这个转换下编码就好了。。 文章转载自:https://www.cnblogs.com/babietongtianta/p/3143900.html 阅读全文
posted @ 2018-12-10 19:46 来了啊老弟 阅读(4842) 评论(0) 推荐(0)