D7下的函数:PWideChar转PAnsichar的 function WCharToChar(WString: PWideChar): string;var Len, dwMinSize: Integer; lpUsedDefaultChar: BOOL;begin Result := '...
分类:
其他好文 时间:
2015-04-13 20:44:52
阅读次数:
142
osgEarth中文显示乱码的几种方法
在此感谢那些在路上那个帮助过别人的朋友,谢谢。
方法一:
通过自己写函数转换类型。
下面这三个函数先复制过去吧。
void unicodeToUTF8(const std::wstring &src, std::string& result)
{
int n = WideCharToMultiByte( CP_UTF8, 0,...
分类:
其他好文 时间:
2015-04-12 22:46:32
阅读次数:
452
要想使用标准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类,必须要包含
#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
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...
#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
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
现在都用宽字节(unicode)了,所以建议使用wstring取代string(ansi版)不像CString一样有Format函数去转换,string/wsting类型需要手动转换#include #include using namespace std;using std::endl;using...
分类:
其他好文 时间:
2015-01-03 10:35:13
阅读次数:
262
封装的最后结果像下面这样:
#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