2
摘要: //获取正则对象,并限定规则 Pattern pattern = Pattern.compile("[+-]*\\d+\\.?\\d*[Ee]*[+-]*\\d+"); //传入需要判断得字符串 boolean matches = pattern.matcher(value).matches(); 阅读全文
posted @ 2020-03-24 12:54 浮夕 阅读(836) 评论(0) 推荐(0) 编辑
摘要: 相关包 // xlsx工作簿 XSSFWorkbook xsswb = null; // xlsx工作表 XSSFSheet xsssheet = null; // xlsx行 XSSFRow xssrow = null; // xls工作簿 HSSFWorkbook hsswb = null; / 阅读全文
posted @ 2020-03-24 12:47 浮夕 阅读(401) 评论(1) 推荐(1) 编辑