06 2020 档案
摘要:ftp上传工具类&FTPClient通过代理连接到FTP服务器 ftp上传工具类,直接封装使用Hutool的ftp pom依赖 <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version
阅读全文
摘要:JS判断闰年与获取月份天数 判断闰年: 某个年份的2月有29号则为闰年 function isLeapYear(year) { // 如果year年2月没有29则自动进一变为3月1日 var date = new Date(year, 1, 29) return date.getDate() 29
阅读全文
摘要:SpringBoot文件上传文件大小限制 The field file exceeds its maximum permitted size of 1048576 bytes. 2020年6月4日15:34:29 复工的第一天,写上传文件接口时遇到了文件大小受限。。。 接口 @ApiOperatio
阅读全文