hhhh2010

博客园 首页 新随笔 联系 订阅 管理

2014年4月15日 #

摘要: 本文原地址:http://blog.csdn.net/zhoufoxcn/article/details/1497092 作者:周公 using System;using System.Text;namespace Common{ /// <summary> /// 实现Base64加密解密 /// 阅读全文
posted @ 2014-04-15 15:36 hhhh2010 阅读(1018) 评论(0) 推荐(0) 编辑

摘要: 本文原地址:http://blog.csdn.net/zhoufoxcn/article/details/1497099 作者:周公 代码如下: [c-sharp] view plaincopy using System; using System.Text; using System.Securi 阅读全文
posted @ 2014-04-15 15:35 hhhh2010 阅读(201) 评论(0) 推荐(0) 编辑

摘要: 本文原地址:http://blog.csdn.net/zhoufoxcn/article/details/1497095 作者:周公 using System;using System.Security.Cryptography;using System.Text;using System.IO;n 阅读全文
posted @ 2014-04-15 15:33 hhhh2010 阅读(285) 评论(0) 推荐(0) 编辑

摘要: 原文地址:http://blog.csdn.net/fulinwsuafcie/article/details/8092459adb shell am 的功能adb shell am使用此命令可以从cmd控制台启动 activity, services;发送 broadcast等等:C:\Users... 阅读全文
posted @ 2014-04-15 14:44 hhhh2010 阅读(316) 评论(0) 推荐(0) 编辑

摘要: 原文: http://www.cnblogs.com/txw1958/archive/2012/08/01/csharp-json.html JSON(全称为JavaScript Object Notation) 是一种轻量级的数据交换格式。它是基于JavaScript语法标准的一个子集。 JSO... 阅读全文
posted @ 2014-04-15 14:29 hhhh2010 阅读(153) 评论(0) 推荐(0) 编辑

摘要: 本文转自:http://www.cnblogs.com/vir56k/archive/2012/12/03/2799810.html,作者张云飞VIR 最近在操作adb做一些事情,就需要开发个windows引用程序。在这里就需要使用winform来调用adb.exe来做事了。然而,要正确调用,还想... 阅读全文
posted @ 2014-04-15 13:40 hhhh2010 阅读(1214) 评论(0) 推荐(0) 编辑

摘要: 原理:e.handled代表这次按键动作是否交由用户自己处理,如果为true代表由用户处理,系统不再过问,这里的应用是拦截,即通知系统我要处理这个数据,但又不处理(丢弃数据),从而实现拦截的效果。 在KeyPress 事件中填写下列代码: e.handled= e.KeyChar'9' ; e.K... 阅读全文
posted @ 2014-04-15 13:35 hhhh2010 阅读(424) 评论(0) 推荐(0) 编辑