上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页
摘要: from: https://blog.csdn.net/c1063891514/article/details/79118243 目录 基本用法 命令语法 为命令指定目标设备 启动/停止 查看 adb 版本 以 root 权限运行 adbd 指定 adb server 的网络端口 设备连接管理 查询 阅读全文
posted @ 2018-11-13 10:11 凉城 阅读(2077) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import traceback import re import os def main(path = 'poco-gzh-33528',size = 3500): dirs = os.listdir(path) list_f = [] num = 0 count = 0 for f in dirs:... 阅读全文
posted @ 2018-11-06 18:04 凉城 阅读(354) 评论(0) 推荐(1) 编辑
摘要: 批处理脚本 1. 遍历指定文件夹下的文件 命令: for [参数] %%变量名 in (匹配符) do (执行的命令) 切记:每个指令之间必须以空格隔开,in 与 ( 之间有空格,do 与 ( 间也有空格,否则命令会无法成功执行 ps:本节只讲用批处理脚本执行 for 命令遍历文件夹的场景,因此以下 阅读全文
posted @ 2018-10-23 12:16 凉城 阅读(69467) 评论(1) 推荐(6) 编辑
摘要: 1 import net.sourceforge.pinyin4j.PinyinHelper; 2 import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType; 3 import net.sourceforge.pinyin4j.format 阅读全文
posted @ 2018-10-15 13:45 凉城 阅读(835) 评论(0) 推荐(0) 编辑
摘要: 1. Termux 终端 Android是一个单用户图形化系统,功能主要以应用的形式呈现给用户,因此在系统上我们无法直接获取终端,更是无法直接调用系统自带的丰富指令。使用ADB是一个曲线救国的方法,打开USB调试后开发者可以在桌面系统的终端中触发Android系统自带指令,使用方法大概如下: adb 阅读全文
posted @ 2018-10-15 12:23 凉城 阅读(39339) 评论(1) 推荐(0) 编辑
摘要: 1、首先需要下载FFmpeg; 2、Gradle依赖 def void forceVersion(details, group, version) { if (details.requested.group == group) { details.useVersion version } } def 阅读全文
posted @ 2018-10-07 16:11 凉城 阅读(5692) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.linuxdiyf.com/linux/2800.html 命令:curl 在Linux中curl是一个利用URL规则在命令行下工作的文件传输工具,可以说是一款很强大的http命令行工具。它支持文件的上传和下载,是综合传输工具,但按传统,习惯称url为下载工具。 语法:# 阅读全文
posted @ 2018-09-30 11:29 凉城 阅读(497) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2018-09-28 12:16 凉城 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 使用swagger通过简单的配置可以生成简单的接口文档; 依赖包: // Swagger2 compile 'io.springfox:springfox-swagger2:2.8.0' compile 'io.springfox:springfox-swagger-ui:2.8.0' 启动类添加配 阅读全文
posted @ 2018-09-27 22:31 凉城 阅读(1737) 评论(0) 推荐(0) 编辑
摘要: 今天遇到的一个问题: 代码检查了好几次,都没有错误,但是启动时就会报错Consider defining a bean of type ''' in your configuration. 启动类在com.A.B的下,找不到的bean在com.A.C下 各种配置都配好了,目测没有问题,搜索解决办法; 阅读全文
posted @ 2018-09-27 21:14 凉城 阅读(8313) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页