摘要: 1 /// 2 ///utf8转unicode 3 /// 4 bool Utf8ToUnicode( std::string& utf8_string, std::wstring& unicode_string) 5 { 6 unicode_string = L""; 7 if (utf8_string.compare("") == 0 ) 8 { ... 阅读全文
posted @ 2018-07-20 09:34 12oz 阅读(192) 评论(0) 推荐(0)