上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 35 下一页
摘要: 【Java SE】http请求HttpClient 文档:https://hc.apache.org/httpcomponents-client-4.5.x/current/tutorial/html/fundamentals.html 依赖 <dependency> <groupId>org.ap 阅读全文
posted @ 2022-05-26 15:03 翠微 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 【Java SE】http请求RestTemplate RestTemplate对象 @Configuration public class RestTemplateConfiguration { @Bean public RestTemplate restTemplate() { HttpComp 阅读全文
posted @ 2022-05-26 15:03 翠微 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 返回自己和超类的 public 字段、方法、构造器getFields()getMethods()getConstructors() 超类没返回 返回自己的所有 字段、方法、构造器getDeclaredFields()getDeclaredMethods()getDeclaredConstructor 阅读全文
posted @ 2022-05-22 19:13 翠微 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 【Java SE】注解 阅读全文
posted @ 2022-05-21 10:11 翠微 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 代理会在运行时创建一个实现了一组给定接口的新类。创建的代理类名字以$Proxy开头,并且是public和final的。创建代理类时需要提供一个实现了InvocationHandler接口的调用处理器,无论何时调用代理对象的方法,调用处理器的invoke方法都会被调用,并向其传递Method和原始对象 阅读全文
posted @ 2022-05-21 10:11 翠微 阅读(16) 评论(0) 推荐(0) 编辑
摘要: referrer <meta name="referrer" content="no-referrer"> referrer content的值空字符串no-referrerno-referrer-when-downgradesame-originoriginstrict-originorigin- 阅读全文
posted @ 2022-05-18 10:45 翠微 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 【JavaCV】OpenCV基本使用 OpenCV documentation 阅读全文
posted @ 2022-05-14 11:14 翠微 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 【JavaCV】FFmpeg基本使用 FFmpeg documentation FFmpegFrameFilter fFmpegFrameFilter;FFmpegFrameGrabber fFmpegFrameGrabber;FFmpegFrameRecorder fFmpegFrameRecor 阅读全文
posted @ 2022-05-14 11:08 翠微 阅读(725) 评论(0) 推荐(0) 编辑
摘要: mp4 转 m3u8 ffmpeg -i D:/01_doc/mp4/test/1.mp4 -codec copy -vbsf h264_mp4toannexb -map 0 -f segment -segment_list D:/01_doc/mp4/test/index.m3u8 -segmen 阅读全文
posted @ 2022-05-10 21:33 翠微 阅读(679) 评论(0) 推荐(0) 编辑
摘要: 格式 ffmpeg [选项] [输入文件选项] -i 输入文件 [输出文件选项] 输出文件 参数 ffmpeg -h ffmpeg version 5.0.1-full_build-www.gyan.dev Copyright (c) 2000-2022 the FFmpeg developers 阅读全文
posted @ 2022-05-10 21:17 翠微 阅读(122) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 35 下一页