摘要: 1、常规操作 // 日期加n天 private static Date addDays(Date date, int n) throws ParseException { return new Date(date.getTime() + n * 24 * 60 * 60 * 1000); } 2、p 阅读全文
posted @ 2022-01-21 13:06 得好好活 阅读(78) 评论(0) 推荐(0)
摘要: VUE 官网: https://cn.vuejs.org/index.html element-ui 官网: https://element.eleme.cn/#/zh-CN/component/installation 1、在文件里执行CMD命令 // 安装vue-cli npm install 阅读全文
posted @ 2022-01-21 12:52 得好好活 阅读(258) 评论(0) 推荐(0)
摘要: java中使用正则 public static void main(String[] args) { // 匹配4个字符, 第一个是字母但不能是aeiou,第二个是aeiou中的一个,第三个要字母但不能是aeiour,第四个是e String a = "^[\\w^aeiou][aeiou][\\w 阅读全文
posted @ 2022-01-21 09:18 得好好活 阅读(74) 评论(0) 推荐(0)