最近要搞安卓APP抓包分析,在网上找了一些方法,综合一自身条件下还是安卓模拟器+tcpdump最方便。需准备工具:1、Microsoft .NET Framework 2.0 SP22、Bluestack 0.7.5.27003、Bluestack 0.7.5.2700 Root镜像4、调试用的adb程序5、Wireshark之类的分析工具6、待抓包的APP首先模拟器选用了BlueStacks,要...
分类:
移动开发 时间:
2014-09-25 11:05:18
阅读次数:
334
遇到问题描述:运行android程序控制台输出 [2012-07-18 16:18:26 - ] The connection to adb is down, and a severe error has occured. [2012-07-18 16:18:26 - ] You must rest...
分类:
数据库 时间:
2014-09-25 01:09:48
阅读次数:
401
1. 查看设备adb devices这个命令是查看当前连接的设备, 连接到计算机的android设备或者模拟器将会列出显示2. 安装软件adb install 这个命令将指定的apk文件安装到设备上3. 卸载软件adb uninstall adb uninstall -k 如果加 -k 参数,为卸载...
分类:
移动开发 时间:
2014-09-24 15:39:27
阅读次数:
182
转自:http://hi.baidu.com/fangqianshu/item/dc52b92d31b2dd1542634a3d 其实进入adb shell,然后执行reboot -p或者直接在命令行输入adb reboot -p同样可以实现关机操作,前者系统会有10s的提醒,后者是直接执行关...
分类:
数据库 时间:
2014-09-24 13:48:36
阅读次数:
315
转自:http://www.growingwiththeweb.com/2014/01/handy-adb-commands-for-android.htmlView connected device(s)Use this to view all connected devices and list...
分类:
移动开发 时间:
2014-09-23 18:53:05
阅读次数:
241
使用Adb shell command直接送key event給Androidadb shell input keyevent 7 # for key '0'adb shell input keyevent 8 # for key '1'adb shell input keyevent ...
分类:
移动开发 时间:
2014-09-23 15:24:04
阅读次数:
196
转自:http://blog.csdn.net/linweidong/article/details/6273507需求: Android的apk获取手机信息,把结果发给PC client注意地方:1.android默认手机端的IP为“127.0.0.1” 2.要想联通PC与android手机的so...
分类:
移动开发 时间:
2014-09-23 07:55:14
阅读次数:
276
一:appium相关环境搭建过程略。二:连接真机: 1.手机(andriod 4.2.2)连接电脑,打开USB调试模式。 2.运行cmd 输入 adb devices -l 查看UDID,如图: 3.再在cmd中输入 appium -a 127.0.0.1 -p4723 -U4d007e9a1...
分类:
移动开发 时间:
2014-09-22 21:00:43
阅读次数:
252
问题描述:
adb端口占用导致
adb server is out of date. killing...
ADB server didn't ACK
* failed to start daemon *
解决办法:
1 执行命令netstat -ano | findstr "5037"即
C:\Users\tom>netstat -ano | findstr "5...
分类:
数据库 时间:
2014-09-22 18:17:53
阅读次数:
223
简单记录在开发过程中常用的正则表达式:
1.[a-b]就是从a-b的数字或者是字母
2.a.b表示以a开始到b结束,.只能唯一代表一个字符。比如acb,adb,aab,a#b,a b等
3.a[abcde]b只有方括号里面指定的字符才参与匹配,只能匹配单个字符
4.如果想要得到aoob就要使用|,。“|”操作符的基本意义就是“或”运算。要匹配“toon”,使用“t(a|e|i|o|oo)n...
分类:
移动开发 时间:
2014-09-22 17:24:35
阅读次数:
194