摘要: /****************** 使用宏来反应按键的输入*************************************/ #define KEYDOWN(vk_code)((GetAsyncKeyState(vk_code) & 0x8000)? 1:0) #define KEYUP(vk_code)((GetAsyncKeyState(vk_code) & 0x8000... 阅读全文
posted @ 2017-01-19 13:52 WonderfulWorld 阅读(927) 评论(0) 推荐(0) 编辑
摘要: /******************** 总结 **********************/ 先说 File 文件 zipFile = zipfile.ZipFile(FilePath , 'r' , zipfile.ZIP_DEFLATED) 打开一个文件,并返回这个对象; FilePath: 阅读全文
posted @ 2017-01-19 13:44 WonderfulWorld 阅读(4042) 评论(0) 推荐(0) 编辑
摘要: 1.button <Button android:background="@color/colorAccent" //背景颜色 android:textSize="10sp" //字体大小,以sp为单位 android:textColor="#000" //字体颜色,以RGB为单位 android: 阅读全文
posted @ 2017-01-19 13:38 WonderfulWorld 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 对最近所学的知识做了总结,通过这个小项目加深印象。 主界面: 拖拽文件到窗口中 用到的工具有: apktool.jar signapk.jar 目录结构: 目录结构: 阅读全文
posted @ 2017-01-18 10:09 WonderfulWorld 阅读(191) 评论(0) 推荐(0) 编辑
摘要: [ Log.v() ] 这个方法用于打印那些最烦琐的,意义最小的日志信息。 对应级别verbose, 级别最低 [ Log.d() ] 这个方法用于打印一些调试信息,这些信息对调试程序和分析问题有帮助。 对应级别debug [ Log.i() ] 这个方法用于打印一些比较重要的数据,这些数据数据应该 阅读全文
posted @ 2017-01-16 17:41 WonderfulWorld 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1 public class text { 2 static final byte[] bytes_a = new byte[]{66, 108, 111, 119, 102, 105, 115, 104}; 3 static final byte[] bytes_key = new byte[]{104,101,108,108,111,50,48,49,55}; 4 ... 阅读全文
posted @ 2017-01-12 09:06 WonderfulWorld 阅读(207) 评论(0) 推荐(0) 编辑
摘要: qq音乐web端分析报告 阅读全文
posted @ 2017-01-10 16:37 WonderfulWorld 阅读(298) 评论(0) 推荐(0) 编辑
摘要: /* *java简单序列化 */ public class Main{ public static void main(String[] args){ File file = new File("person.out"); try{ ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(file)... 阅读全文
posted @ 2017-01-10 16:30 WonderfulWorld 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 引用网络上的图片 解释 dex文件头部,记录整个dex文件的相关属性 字符串数据索引,记录了每个字符串在数据区的偏移量 类似数据索引,记录了每个类型的字符串索 原型数据索引,记录了方法声明的字符串,返回类型字符串参数列表 类方法索引,记录方法所属类名,方法声明以及方法等信息 类方法索引,记录方法所属 阅读全文
posted @ 2017-01-10 16:10 WonderfulWorld 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 1.GitHub地址 https://github.com/square/okhttp 2.使用步骤 将下载的包导入 对包进行设置依赖: 最终的效果图: 3.源码 阅读全文
posted @ 2017-01-10 15:52 WonderfulWorld 阅读(793) 评论(0) 推荐(0) 编辑