摘要: 1 pythontab 中文 http://www . pythontab .com/ 2 python 学习手册 # http://docs. pythontab . com/ 3 python标准库 https://docs.python.org/2.7/library/ 阅读全文
posted @ 2017-06-16 15:19 liuzhipenglove 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 关于/mnt/sdcard和sdcard的区别,可以这样理解:其实,安卓系统是从Linux而衍生出来的,而mnt是unix/Linux传统系统下挂载外部设备的专用目录,Linux默认挂载外部设备都会挂到这个目录下面去,如将sd卡挂载上去后,会生成一个/mnt/sdcard 目录。/sdcard 目录 阅读全文
posted @ 2017-06-14 09:17 liuzhipenglove 阅读(2352) 评论(0) 推荐(0) 编辑
摘要: http://docs.pythontab.com/tornado/introduction-to-tornado/ch2.html#ch2-1 python的各种库的中文教程 http://docs.pythontab.com/ 阅读全文
posted @ 2017-06-11 18:17 liuzhipenglove 阅读(797) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/leexide/article/details/17252369 http://blog.csdn.net/leexide/article/details/17252369 http://blog.csdn.net/leexide/article/detai 阅读全文
posted @ 2017-06-08 09:37 liuzhipenglove 阅读(445) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/tea_wu/article/details/8349130 阅读全文
posted @ 2017-06-06 09:19 liuzhipenglove 阅读(101) 评论(0) 推荐(0) 编辑
摘要: def deleteDirectory(self,current_path): if not os.path.exists(current_path): self.logger.info(current_path + "does not exist, go on") return assert os.path... 阅读全文
posted @ 2017-06-02 09:33 liuzhipenglove 阅读(698) 评论(0) 推荐(0) 编辑
摘要: # _*_ coding: utf-8 _*_ import zipfile import shutil import os print os.getcwd() basedir = os.path.dirname(__file__) print os.path.dirname(os.path.dirname(__file__)) def unzip_file(zipfilename,un... 阅读全文
posted @ 2017-06-01 20:33 liuzhipenglove 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 传说之美 分享快乐 记录生活 学习探索 博客园 首页 新随笔 联系 管理 订阅 随笔- 75 文章- 0 评论- 19 Android 用adb pull或push 拷贝手机文件到到电脑上,拷贝手机数据库到电脑上,拷贝电脑数据库到手机上 先说一下adb命令配置,如果遇到adb不是内部或外部命令,也不 阅读全文
posted @ 2017-05-31 17:17 liuzhipenglove 阅读(35437) 评论(0) 推荐(0) 编辑
摘要: 1第一次打开应用,可能会要求下载插件,我们先在/sdcard/Android/data/<packageName> 或者/data/data/<pakeageName>找到插件,adb pull到本地 2adb -s <devices> install <apk> 3adb push 插件到andr 阅读全文
posted @ 2017-05-26 20:13 liuzhipenglove 阅读(172) 评论(0) 推荐(0) 编辑
摘要: C:\Users\Administrator>adb pull /sdcard/performance/antutuvideo d:\temp\antutuvideo (本地创建的文件夹要和antutuvideo下面的文件家一致) C:\Users\Administrator>adb pull /s 阅读全文
posted @ 2017-05-25 16:21 liuzhipenglove 阅读(11106) 评论(0) 推荐(0) 编辑