Loading

上一页 1 ··· 8 9 10 11 12 13 下一页
摘要: #安装adb brew install android-platform-tools #测试adb adb devices 阅读全文
posted @ 2021-06-27 13:44 老卫同学 阅读(106) 评论(0) 推荐(0)
摘要: redis-server.exe --service-install redis.windows.conf 阅读全文
posted @ 2021-06-22 12:05 老卫同学 阅读(137) 评论(0) 推荐(0)
摘要: nginx配置https server { listen 80; listen 443 ssl; server_name lan.oldwei.com; client_max_body_size 2000M; #charset koi8-r; #access_log logs/host.access 阅读全文
posted @ 2021-06-15 11:53 老卫同学 阅读(138) 评论(0) 推荐(0)
摘要: 创建git仓库 …or create a new repository on the command line echo "# blank" >> README.md git init git add README.md git commit -m "first commit" git branch 阅读全文
posted @ 2021-06-09 15:37 老卫同学 阅读(91) 评论(0) 推荐(0)
摘要: 使用chrome插件油猴 油猴编码 go语言使用chromedp模拟chrome浏览器 github地址 阅读全文
posted @ 2021-06-09 00:17 老卫同学 阅读(105) 评论(0) 推荐(0)
摘要: Go 支持交叉编译,在可以一个平台上生成多个平台的执行文件。 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build CGO_ENABLED=0 GOOS=darw 阅读全文
posted @ 2021-06-07 09:49 老卫同学 阅读(231) 评论(0) 推荐(0)
摘要: 在浏览器中拉流播放报错: DemuxException: type = CodecUnsupported, info = Flv: Unsupported codec in video frame: 2 解决方案: 推流时加上编码格式h264: -vcodec h264 ffmpeg -re -i 阅读全文
posted @ 2021-06-04 10:43 老卫同学 阅读(6067) 评论(1) 推荐(0)
摘要: /** * 发送数据到云端接口 * @param filename 文件名 */ public void sendDataToCloudApi(String filepath) { FileSystemResource fileSystemResource = new FileSystemResou 阅读全文
posted @ 2021-05-10 19:13 老卫同学 阅读(1007) 评论(0) 推荐(0)
摘要: 阿里云对象存储OSS文件上传工具类 使用的依赖包 <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.6.2</version> </dependency> <depende 阅读全文
posted @ 2021-05-10 18:44 老卫同学 阅读(742) 评论(0) 推荐(0)
摘要: 在项目中遇到读取以json格式存储的配置文件,为了方便操作,将文件内容读取出来并转换为json对象,本文使用的是fastjson import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org. 阅读全文
posted @ 2021-05-10 18:28 老卫同学 阅读(2675) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 下一页