2021年11月9日
摘要: 正则表达式验证输入的字符串 boolean matchs = Pattern.matches("^(0|[1-9][0-9]*|-[1-9][0-9]*)$", str); 1.正整数 | 0 "^(0|[1-9][0-9]*)$" 2.负整数 | 0 "^(0|-[1-9][0-9]*)$" 3. 阅读全文
posted @ 2021-11-09 16:40 布鲁布鲁sky 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 记录一下,留着后用 java //每次批量插入的数量 int limitSize = 500; //总共可以分几页 int count = (int) Math.ceil((double) list.size() / limitSize); for (int i = 0; i <= count - 阅读全文
posted @ 2021-11-09 15:01 布鲁布鲁sky 阅读(158) 评论(0) 推荐(0) 编辑