上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 58 下一页
摘要: 参考: https://blog.csdn.net/qq_41878811/article/details/86146568 失效idea缓存,重启: 阅读全文
posted @ 2020-04-24 18:23 毛会懂 阅读(15043) 评论(3) 推荐(1) 编辑
摘要: https://www.cnblogs.com/dengpengbo/p/10545787.html https://www.zhulou.net/post/1936.html 参考代码: /*** @desc : 校验发送频率 * flagStr: 标识字符串 seconds:每几秒内 count 阅读全文
posted @ 2020-04-22 19:51 毛会懂 阅读(227) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/m0_37034294/article/details/82917234 阅读全文
posted @ 2020-04-16 11:14 毛会懂 阅读(574) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-03-27 22:41 毛会懂 阅读(1) 评论(0) 推荐(0) 编辑
摘要: DATETODAY(DATE)-DATETODAY(REF(DATE,LLVBARS(L,500))); 阅读全文
posted @ 2020-03-27 22:40 毛会懂 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 禁止鼠标滑过滚动条滚动 document.body.onmousewheel = function () {return false;} 恢复鼠标滑过滚动条滚动 document.body.onmousewheel = function () {return true;} 禁止键盘控制滚动条滚动 d 阅读全文
posted @ 2020-03-22 22:20 毛会懂 阅读(7432) 评论(0) 推荐(0) 编辑
摘要: ServletOutputStream out = null;InputStream inputStream = null;try {// 获取外部文件流URL url = new URL(path);HttpURLConnection conn = (HttpURLConnection) url. 阅读全文
posted @ 2020-03-19 15:51 毛会懂 阅读(987) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lucas1024/p/9533220.html 1.以流的方式下载. public HttpServletResponse download(String path, HttpServletResponse response) { try { // 阅读全文
posted @ 2020-03-19 15:49 毛会懂 阅读(23033) 评论(0) 推荐(2) 编辑
摘要: 添加依赖: <dependency> <groupId>org</groupId> <artifactId>jaudiotagger</artifactId> <version>2.0.3</version></dependency> /*** @desc : 上传音乐* @author : 毛会懂 阅读全文
posted @ 2020-03-19 14:08 毛会懂 阅读(726) 评论(0) 推荐(0) 编辑
摘要: public static File multipartFileToFile(MultipartFile file) throws Exception { File toFile = null; if (file.equals("") || file.getSize() <= 0) { file = 阅读全文
posted @ 2020-03-19 14:07 毛会懂 阅读(11579) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 58 下一页