会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
页首Html代码
返回顶部
ayanmw
上海:游戏行业Golang工作者 深圳:C/C++ 游戏后端工作者
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
4
5
6
7
8
9
10
11
12
···
22
下一页
2015年4月1日
wim2008 让FTP防火墙可用性配置
摘要: 转:Win2003和Win2008防火墙导致FTP服务器不能访问的解决方法这篇文章主要介绍了Win2003和Win2008防火墙导致FTP服务器不能访问的解决方法,需要的朋友可以参考下由于通过远程访问传文件比较麻烦,就安装了IIS自带的FTP功能,设置好了之后,服务器上可以通过用户名,账号访问该FT...
阅读全文
posted @ 2015-04-01 11:12 ayanmw
阅读(538)
评论(0)
推荐(0)
2015年2月15日
Excel VBA 从一个工作簿查找另一个一个工作簿中的一些内容复制到另外一个工作簿
摘要: 帮朋友来写个Excel VBA以前写过ASP,所以对vb略微熟悉,但VBA 没有仔细研究过。以前只研究过 vba 写一个 计算个人所得税的程序。这次写的功能也算是简单,但也耗费了两天的功夫。需求:1 从【操作】表中,查找最后一行的数据,每一列 都为关键字2 遍历这些关键字,从【总表】中查询这个关键字...
阅读全文
posted @ 2015-02-15 12:05 ayanmw
阅读(28804)
评论(0)
推荐(0)
2015年2月2日
C++虚函数之接口 最简单的功能
摘要: 虚函数 ,接口,到底有什么用呢?以前我都是在C++ 里面写C,只用到 简单的C++面对对象知识#includeclass IServerLogic{ virtual ~IServerLogic(){}public: virtual bool OnStart()=0; virtual bool ...
阅读全文
posted @ 2015-02-02 19:30 ayanmw
阅读(2517)
评论(0)
推荐(0)
2015年1月27日
【转】vs2012-vs2010使用stlport库的配置
摘要: http://www.cnblogs.com/sbaicl/archive/2012/08/30/2663114.htmlSTLport下载地址:http://sourceforge.net/projects/stlport/files/STLport/STLport-5.2.1/STL还有一个非常...
阅读全文
posted @ 2015-01-27 19:05 ayanmw
阅读(369)
评论(0)
推荐(0)
2015年1月23日
支付宝 iphone6 指纹验证失败
摘要: 重启 iphone6 就可以了。再次打开 支付宝 那个 指纹功能,就有一个弹出框 可以按指纹了。
阅读全文
posted @ 2015-01-23 19:15 ayanmw
阅读(467)
评论(0)
推荐(0)
2014年12月17日
const 变量修饰 研究
摘要: #include#includeusing namespace std;struct A{ const int value_const() const{return 1;} const int value(){return 1;}};int main(){ A* const a1=...
阅读全文
posted @ 2014-12-17 14:18 ayanmw
阅读(355)
评论(0)
推荐(0)
2014年6月9日
httpd 不带反斜杠 出现 301重定向
摘要: [root@VM_64_69_centos httpd]# curl http://localhost:9001/pay301 Moved PermanentlyMoved PermanentlyThe document has moved here.Apache/2.2.15 (CentOS) S...
阅读全文
posted @ 2014-06-09 17:02 ayanmw
阅读(1930)
评论(1)
推荐(0)
2014年6月3日
c++ 使用json的库。cJSON
摘要: cJSON官网是:http://sourceforge.net/projects/cjson/?source=recommended最新版本是2013年的,与2009年的变化不是很大。看了代码,觉得挺好,只是是C语言的,不够好。就改良了一下,内存自己管理。使用std::stringhttp://fi...
阅读全文
posted @ 2014-06-03 00:14 ayanmw
阅读(19478)
评论(2)
推荐(0)
2014年5月19日
unity调用MMBilling_2.4.2 Android SDK.
摘要: 项目要使用android 的移动支付SDK 应用内付费[http://dev.10086.cn/wiki/?p2_01_05]由于需要unity和android交互,之前研究了下,unity和android交互是可以的.但是unity和MMBilling的SDK调用为什么就是不成功呢?经过几日研究,...
阅读全文
posted @ 2014-05-19 10:10 ayanmw
阅读(1203)
评论(0)
推荐(0)
2014年5月14日
unity与Android相互调用
摘要: 现在unity 导出的android客户端需要调用 Android 的支付SDK,但是unity与android应该如何互相调用呢???经过百度 谷歌.终于找到方法,明白大概原理了.重要参考资料:Unity3D研究院之打开Activity与调用JAVA代码传递参数(十八)下面说几点我犯的错误:1:A...
阅读全文
posted @ 2014-05-14 15:09 ayanmw
阅读(12994)
评论(0)
推荐(0)
【手机网络游戏 编程】C#异步socketAPI调用 处理数据的流程
摘要: 之前客户端在网络条件好的时候,运行没问题.但是有时候手机的网络不稳定,接受数据可能不稳定,导致接受数据错误,一直都不知道,原来是接受数据处理的不够好!现在更改过后的接受数据的逻辑如下: //接收 public void Receive(int length, bool tag, byte...
阅读全文
posted @ 2014-05-14 11:56 ayanmw
阅读(708)
评论(0)
推荐(0)
2014年5月12日
【已解决】unity4.2.0f4 导出Android工程报错:Error building Player: ArgumentException: Illegal characters in path. [unity导出android工程 报错,路径含有非法字符]
摘要: 使用unity3D开发的一个客户端,需要导出为Android工程,然后接入一些第三方android SDK。unity版本操作系统为:OS 名称: Microsoft Windows 7 旗舰版OS 版本: 6.1.7601 Service Pack 1 Buil...
阅读全文
posted @ 2014-05-12 19:20 ayanmw
阅读(5435)
评论(0)
推荐(0)
2014年5月11日
【已解决】Android微信开放平台,申请移动应用的 应用签名 如何获取
摘要: 在微信开放平台,申请移动应用的时候:https://open.weixin.qq.com/cgi-bin/appcreate?t=manage/createMobile&type=app&lang=zh_CN&token=60682ddfbd9106b1c4b1f9d70f56c98e5f72890...
阅读全文
posted @ 2014-05-11 15:58 ayanmw
阅读(136986)
评论(1)
推荐(0)
2014年5月10日
【keytool jarsigner工具的使用】Android 使用JDK1.7的工具 进行APK文件的签名,以及keystore文件的使用
摘要: 一个android apk的编译过程 请参考:http://www.2cto.com/kf/201312/261475.html典型的编译过程:aapt( Android Asset Packaging Tool): 把你的应用程序资源文件(例如: AndroidManifest.xml file ...
阅读全文
posted @ 2014-05-10 18:16 ayanmw
阅读(29276)
评论(0)
推荐(2)
2014年5月5日
mysql 触发器 插入
摘要: MySQL触发器 重要学习资料:http://dev.mysql.com/doc/refman/5.1/zh/triggers.html在使用触发器的时候,遇到一个错误:[SQL]insert into tb_recharge_records(user_id,pointcoupon_added) v...
阅读全文
posted @ 2014-05-05 18:49 ayanmw
阅读(4199)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
11
12
···
22
下一页
公告
页脚Html代码