上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: package com.oop; public class IsPrime { public static void main(String[] args) { int sum = 0,i,j; for( i = 2; i <= 100;i++) { for( j = 2; j < i;j++) { 阅读全文
posted @ 2022-06-20 08:42 wjxuriel 阅读(271) 评论(0) 推荐(0)
摘要: package com.oop; public class factorical { public static void main(String[] args) { long result = sumOf(10); System.out.println(result); long sum = su 阅读全文
posted @ 2022-06-20 08:41 wjxuriel 阅读(38) 评论(0) 推荐(0)
摘要: package com.oop; public class gongyueshu { public static void main(String[] args) { int result = getCommonDivisor(60, 120); System.out.println(result) 阅读全文
posted @ 2022-06-20 08:41 wjxuriel 阅读(25) 评论(0) 推荐(0)
摘要: **xmlns(XML Namespaces的缩写)是一个属性,是XML(标准通用标记语言的子集)命名空间。作用是赋予命名空间一个唯一的名称。 ** 总之一句话就是用来解决重命名问题 阅读全文
posted @ 2022-06-18 22:21 wjxuriel 阅读(24) 评论(0) 推荐(0)
摘要: Code Spell Checker 阅读全文
posted @ 2022-06-18 22:18 wjxuriel 阅读(198) 评论(0) 推荐(0)
摘要: 将config改为mapper 阅读全文
posted @ 2022-06-17 17:13 wjxuriel 阅读(374) 评论(0) 推荐(1)
摘要: @Test public void testPostDemo() { // 1. 创建一个http工具类,作用类似浏览器 CloseableHttpClient client = HttpClients.createDefault(); try { // 2.获取 uri URIBuilder ur 阅读全文
posted @ 2022-06-10 17:41 wjxuriel 阅读(125) 评论(0) 推荐(0)
摘要: package com.msb.httpclient; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apa 阅读全文
posted @ 2022-06-10 17:26 wjxuriel 阅读(59) 评论(0) 推荐(0)
摘要: FFmpeg 的基础使用方法 下载index.m3u8视频 ffmpeg -i $下载视频的地址index.m3u8 -c copy $output.mp4 提取音频 示例:ffmpeg -i origin.mp4 -acodec copy -vn voice.aac 解释:ffmpeg -i 原始 阅读全文
posted @ 2022-06-03 17:11 wjxuriel 阅读(49) 评论(0) 推荐(0)
摘要: 解决端口占用 阅读全文
posted @ 2022-05-30 16:52 wjxuriel 阅读(72) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 11 下一页