摘要: ```python url='http://www.baidu.com' while True: resp=requests.get(url).content.decode() selector=etree.HTML(resp) self.parse_data(selector) next_url=''.join(selector.xpath("//div[@class='next']/text( 阅读全文
posted @ 2020-03-03 23:31 hank-li 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1.安装下载: https://github.com/skylot/jadx 2.运行 在lib文件夹下运行命令 3.打开文件 4.结果 java文件,资源文件(包括图片、layout、so文件)都反编译出来了。 from: https://blog.csdn.net/weixin_39142112 阅读全文
posted @ 2020-03-03 10:48 hank-li 阅读(2804) 评论(0) 推荐(1) 编辑