摘要:
正则表达式验证输入的字符串 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. 阅读全文
摘要:
记录一下,留着后用 java //每次批量插入的数量 int limitSize = 500; //总共可以分几页 int count = (int) Math.ceil((double) list.size() / limitSize); for (int i = 0; i <= count - 阅读全文