摘要: 匹配unicode字符 有时候我们需要匹配ASCII范围之外的字符。 "Qu’est-ce que la tolérance? c’est l’apanage de l’humanité. Nous sommes tous pétris de faiblesses et d’erreurs; par 阅读全文
posted @ 2021-01-28 17:09 路要一步一步走 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/w605283073/article/details/89577773 阅读全文
posted @ 2021-01-28 15:14 路要一步一步走 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.cnblogs.com/softidea/p/5877546.html 阅读全文
posted @ 2021-01-28 13:17 路要一步一步走 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 给bitmap赋像素值的方法有两种: 1. bitmap.setPixel(int x,int y,color)此方法功能为给bitmap中的某个像素赋RGB值。 参数 x,y表示该像素的坐标。color为整型的RGB值。 2.bitmap.setPixels(int [] pixels,int i 阅读全文
posted @ 2021-01-28 11:39 路要一步一步走 阅读(2145) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/l_215851356/article/details/52350891?utm_medium=distribute.pc_feed_404.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonec 阅读全文
posted @ 2021-01-28 11:27 路要一步一步走 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 学习目标 快速学会使用注解关闭Swagger2,避免接口重复暴露。 使用教程 禁用方法1:使用注解@Profile({"dev","test"}) 表示在开发或测试环境开启,而在生产关闭。(推荐使用) 禁用方法2:使用注解@ConditionalOnProperty(name = "swagger. 阅读全文
posted @ 2021-01-28 10:42 路要一步一步走 阅读(1194) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/qq_42369555/article/details/82745923 阅读全文
posted @ 2021-01-28 10:30 路要一步一步走 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 查看如下代码: String mac_no_ff = ""; for (int i = 0; i < 6; i++) { mac += Integer.toHexString(card[i] & 0xff).toUpperCase(); mac_no_ff += Integer.toHexStrin 阅读全文
posted @ 2021-01-28 10:16 路要一步一步走 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 转载:http://www.51gjie.com/java/1071.html 阅读全文
posted @ 2021-01-28 10:05 路要一步一步走 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 进程状态转换图 kill和kill -9,两个命令在linux中都有杀死进程的效果,然而两命令的执行过程却大有不同,在程序中如果用错了,可能会造成莫名其妙的现象。 执行kill命令,系统会发送一个SIGTERM信号给对应的程序。当程序接收到该signal信号后,将会发生以下事情: 程序立刻停止 当程 阅读全文
posted @ 2021-01-28 10:00 路要一步一步走 阅读(937) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/zbw18297786698/article/details/53584515 阅读全文
posted @ 2021-01-28 09:40 路要一步一步走 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 转载:http://doc.redisfans.com/index.html 阅读全文
posted @ 2021-01-28 09:24 路要一步一步走 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/qq403580298/article/details/82937579 今天尝试Redis的分布式锁,因为没有分布式环境,使用多线程来代替,但是在使用多线程的时候,总是会有 redis.clients.jedis.exceptions.JedisC 阅读全文
posted @ 2021-01-28 09:13 路要一步一步走 阅读(1660) 评论(0) 推荐(0) 编辑