jxsdpengbin

导航

2014年7月3日 #

对ToString("X2 ")的理解

摘要: /// /// 将byte型转换为字符串 /// /// byte型数组 /// 目标字符串 private string ByteArrayToString(byte[] arrInput) { int i; StringBuilder sOutput = new StringBuilder(arrInput.Length); for (i = 0; i /// 对接收到的数据进行解包(... 阅读全文

posted @ 2014-07-03 11:05 jxsdpengbin 阅读(172) 评论(0) 推荐(0) 编辑

2014年6月20日 #

0x7c95caa2指令引用的0x00000000内存 该内存不能read

摘要: 出现这样的错误,往往和动态库有关系! 解决方法: 阅读全文

posted @ 2014-06-20 12:03 jxsdpengbin 阅读(241) 评论(0) 推荐(0) 编辑

2014年6月6日 #

CnBlog客户端Windows Live Write安装方法

摘要: 官方帮助http://space.cnblogs.com/forum/topic/8550 注:如果自动配置没有成功,需要手动配置: a) 在“Type of weblog that you are using”中选择“Custom(Metaweblog API)”。b) “Remote posting URL for your weblog”中输入“http://www.cnblogs.com... 阅读全文

posted @ 2014-06-06 11:51 jxsdpengbin 阅读(141) 评论(0) 推荐(0) 编辑

svn回滚版本

摘要: 1.本地修改了内容,但是没有commit可以通过Revert…来覆盖当前版本。 2.已经commit了。首先第一步,应该知道需要回滚的版本编号, 第二步,选择 updata to revision 阅读全文

posted @ 2014-06-06 11:43 jxsdpengbin 阅读(222) 评论(0) 推荐(0) 编辑

2014年3月20日 #

双网卡同时工作设置

摘要: 1.cmd 输入route print2.route delete 0.0.0.0 删除0.0.0.03.route add -p 0.0.0.0 task 0.0.0.0 192.168.8.1 添加网关192.168.8.14.ping 2端网口对端ip即可 阅读全文

posted @ 2014-03-20 11:42 jxsdpengbin 阅读(406) 评论(0) 推荐(0) 编辑