用VC实现post数据常常会遇到URL编码问题在此封装一个工具类进行UTF8编码的转换源码来自php
source code只是简单的封装给C++调用[cpp]view
plaincopy//URL编解码类//来自PHP源码classCRtUrlConv{public:staticchar*urle...
分类:
其他好文 时间:
2014-05-09 18:41:25
阅读次数:
455
1.vs2010的配置新建一个工程,在属性管理器中选择Debug|Win64->Microsoft.Cpp.Win64.user->VC++目录。设置包含目录为:D:\MATLAB\R2010a\extern\include(我的matlab装在D盘);设置库目录为:D:\MATLAB\R2010a...
分类:
编程语言 时间:
2014-05-09 17:31:20
阅读次数:
411
遇到一未找到必然出现条件的崩溃,不知道什么时候能触发崩溃,崩溃dump显示,试图访问了非法的内存或者写入了非法的内存此时如下两个函数就比较有用了:[cpp]view
plaincopyBOOLWINAPIIsBadReadPtr(__inconstVOID*lp,__inUINT_PTRucb);B...
分类:
其他好文 时间:
2014-05-09 16:57:58
阅读次数:
351
提示未在本地计算机上注册“Microsoft.ACE.OLEDB.12.0”提供程序,程序中出现这样的提示原因有很多种,这里我想记录的只是其中一种情况,具体如下:当操作系统为64位的操作系统时,如果没有对程序集进行设置,使用默认编译配置的话会产生表示所示的提示信息。此时我们需要做的就是将应用程序属性...
分类:
数据库 时间:
2014-05-06 13:27:54
阅读次数:
357
// test.cpp : Defines the entry point for the
console application.//#include "stdafx.h"#include #include #include
"winioctl.h"#define IOCTL_STORAGE_QU...
分类:
其他好文 时间:
2014-05-05 10:52:44
阅读次数:
370
vector > p1(pt1.size(), vector(2));
vector> ps;
vector pp;
for(int i = 0; i
{
p1[i][0] = pt1[i].x;
p1[i][1] = pt1[i].y;
pp.push_back(pt1[i].x);
pp.push_back(pt1[i].y);
ps.push_back(pp...
分类:
其他好文 时间:
2014-05-04 18:05:41
阅读次数:
238
原始地址:XMPPFrameWork IOS
开发(五)获取好友信息和添加删除好友好友列表和好友名片[cpp]view
plaincopyprint?[_xmppRosterfetchRoster];//获取好友列表//获取到一个好友节点-(void)xmppRoster:(XMPPRoster*)...
分类:
其他好文 时间:
2014-05-04 11:19:57
阅读次数:
273
聊天室[cpp]view
plaincopyprint?//初始化聊天室XMPPJID*roomJID=[XMPPJIDjidWithString:ROOM_JID];xmppRoom=[[XMPPRoomalloc]initWithRoomStorage:selfjid:roomJID];[xmp...
分类:
其他好文 时间:
2014-05-04 11:06:05
阅读次数:
345
本文出自:http://blog.csdn.net/svitter
题意:典型到不能再典型的01背包。给了我一遍AC的快感。
//============================================================================
// Name : 2602.cpp
// Author : vit
/...
分类:
其他好文 时间:
2014-05-03 16:43:59
阅读次数:
221
.cpp
layout->setBackGroundImageScale9Enabled(true);
layout->setBackGroundImage("green_edit.png");
layout->setPosition(Point(0,0));
addChild(layout);
...
分类:
其他好文 时间:
2014-05-03 16:30:56
阅读次数:
322