码迷,mamicode.com
首页 >  
搜索关键字:wstring    ( 179个结果
D7WideChar转PAnsichar的
D7下的函数:PWideChar转PAnsichar的 function WCharToChar(WString: PWideChar): string;var Len, dwMinSize: Integer; lpUsedDefaultChar: BOOL;begin Result := '...
分类:其他好文   时间:2015-04-13 20:44:52    阅读次数:142
解决osgEarth中文显示乱码的几种方法
osgEarth中文显示乱码的几种方法 在此感谢那些在路上那个帮助过别人的朋友,谢谢。 方法一: 通过自己写函数转换类型。 下面这三个函数先复制过去吧。 void unicodeToUTF8(const std::wstring &src, std::string& result) { int n = WideCharToMultiByte( CP_UTF8, 0,...
分类:其他好文   时间:2015-04-12 22:46:32    阅读次数:452
String
要想使用标准C++中string类,必须要包含#include // 注意是,不是,带.h的是C语言中的头文件using std::string;using std::wstring;或using namespace std;下面你就可以使用string/wstring了,它们两分别对应着char和...
分类:其他好文   时间:2015-03-03 11:09:51    阅读次数:167
c++ string总结
?? 要想使用标准C++中string类,必须要包含 #include // 注意是,不是,带.h的是C语言中的头文件 using  std::string; using  std::wstring; 或 using namespace std; 下面你就可以使用string/wstring了,它们两分别对应着char和wchar_t。 string和wstring的用法是一样的,...
分类:编程语言   时间:2015-02-09 15:58:54    阅读次数:160
win32 wstring <-> string
static std::string w2c(std::wstring str) { int nlength = str.length(); int nbytes = WideCharToMultiByte(0,0,str.c_str(),nlength,NULL,0,NULL,NULL); if(nbytes == 0) return ""; char*buff = n...
分类:Windows程序   时间:2015-02-05 18:51:19    阅读次数:364
中心反转中文句子
#include #include #include #include vector GetStr (const wstring &s){ locale china ("chs"); wistringstream line (s); wstring word; vector ...
分类:其他好文   时间:2015-01-30 16:46:01    阅读次数:180
在进程中找指定的程序
把APP完整路径传进去,枚举进程,通过简单的比较,就可以得到结果了。附上完整代码: bool CheckApp(wstring _strGamePath) {     HANDLE hProcessSnap;     HANDLE hProcess;     PROCESSENTRY32 pe32;     DWORD dwPriorityClass;     // ...
分类:系统相关   时间:2015-01-19 12:49:59    阅读次数:164
开源一个C++实现的简单HTTP协议处理库
HTTP协议库有两个版本,一个是基于WININET,一个则是使用socket实现的。 可以支持POST 、GET请求,断点下载、重定向下载、下载进度回调,不支持HTTPS。 接口头文件声明如下: #pragma once #include using std::string; using std::wstring; #include #include enum REQUEST_T...
分类:编程语言   时间:2015-01-15 18:15:36    阅读次数:463
int转string的3种方法
现在都用宽字节(unicode)了,所以建议使用wstring取代string(ansi版)不像CString一样有Format函数去转换,string/wsting类型需要手动转换#include #include using namespace std;using std::endl;using...
分类:其他好文   时间:2015-01-03 10:35:13    阅读次数:262
log4cplus简单封装
封装的最后结果像下面这样: #include "robotlog.h" int main() { //ROBOTLOG_API RobotLog( // const wstring& file_name = L"..\\log\\robot.log", // const wstring& number_of_file = L"10", // const wstring& size_...
分类:其他好文   时间:2014-12-31 14:32:47    阅读次数:239
179条   上一页 1 ... 13 14 15 16 17 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!