2021年11月19日

摘要: monkey 在模拟器或真机里在,。它向系统发送伪随机的用户事件流(如按键输入、触摸屏输入、手势输入等),打开app 查看包名 adb shell dumpsys window windows | findstr mFocusedApp ignore 美[ɪɡˈnɔːr] 忽略需要控制monkey执 阅读全文

posted @ 2021-11-19 17:20 可妮兔❀ 阅读(193) 评论(0) 推荐(0) 编辑


2021年2月7日

摘要: 阅读全文

posted @ 2021-02-07 14:40 可妮兔❀ 阅读(124) 评论(0) 推荐(0) 编辑

摘要: 1、查看连接手机设备 adb derivces 时,手机状态是offline状态(无法正常连接)。 解决法: 1、adb kill-server 终止adb调试服务 2、adb start-server 开启adb调试服务 3、adb remount 重新加载数据 再次查看adb derivces 阅读全文

posted @ 2021-02-07 14:37 可妮兔❀ 阅读(397) 评论(0) 推荐(0) 编辑


2019年5月10日

摘要: 函数:startswith() 作用:判断字符串是否以指定字符或子字符串开头 一、函数说明语法:string.startswith(str, beg=0,end=len(string)) 或string[beg:end].startswith(str) 参数说明:string: 被检测的字符串str 阅读全文

posted @ 2019-05-10 12:54 可妮兔❀ 阅读(2091) 评论(0) 推荐(0) 编辑

摘要: 函数:string.join()Python中有join()和os.path.join()两个函数,具体作用如下: join(): 连接字符串数组。将字符串、元组、列表中的元素以指定的字符(分隔符)连接生成一个新的字符串 os.path.join(): 将多个路径组合后返回一、函数说明1、join( 阅读全文

posted @ 2019-05-10 01:28 可妮兔❀ 阅读(347) 评论(0) 推荐(0) 编辑

摘要: for循环可以遍历某一对象(遍历:通俗点说,就是把这个循环中的第一个元素到最后一个元素依次访问一次)。for循环的结构如下 具体例子打印乘法表: 阅读全文

posted @ 2019-05-10 01:16 可妮兔❀ 阅读(570) 评论(0) 推荐(0) 编辑


2016年6月7日

摘要: 安装了lrzsz ,使用时,还是提示找不到 阅读全文

posted @ 2016-06-07 16:23 可妮兔❀ 阅读(153) 评论(0) 推荐(0) 编辑


2016年5月28日

摘要: 首先官网下载Nginx http://nginx.org/en/download.html nginx依赖的程序 1. gzip module requires zlib library 2. rewrite module requires pcre library 3. ssl support r 阅读全文

posted @ 2016-05-28 23:18 可妮兔❀ 阅读(204) 评论(0) 推荐(0) 编辑

摘要: 1、在LIUNX下下载tomcat。wget apache-tomcat-7.0.41.tar.gz 2、在安装目录下解压。 tar -zxvf apache-tomcat-7.0.41.tar.gz ./startup.sh //启动tomcat ./shutdown.sh //关闭tomcat 阅读全文

posted @ 2016-05-28 21:21 可妮兔❀ 阅读(237) 评论(0) 推荐(0) 编辑


2016年5月27日

摘要: Apache与Tomcat都是Apache开源组织开发的用于处理HTTP服务的项目,两者都是免费的,都可以做为独立的Web服务器运行。Apache是Web服务器而Tomcat是Java应用服务器 Apache:是C语言实现的,专门用来提供HTTP服务。 特性:简单、速度快、性能稳定、可配置(代理) 阅读全文

posted @ 2016-05-27 16:37 可妮兔❀ 阅读(129) 评论(0) 推荐(0) 编辑


Copyright © 2024 可妮兔❀
Powered by .NET 8.0 on Kubernetes