摘要: Excel固定显示某一行, 1.选中需要冻结的窗格的下一行 2.视图>冻结窗格>冻结拆分窗格 阅读全文
posted @ 2021-12-24 12:15 northli 阅读(276) 评论(0) 推荐(0) 编辑
摘要: String str ="222";Pattern pattern = Pattern.compile("[0-9]*");if(pattern.matcher(str).matches()){ System.out.println("是数字");}else{ System.out.println( 阅读全文
posted @ 2021-12-24 11:10 northli 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 获取map的值列表Map<String, String> map = new HashMap<String, String>();map.put("a_k", "a_v");map.put("b_k", "b_v");map.put("c_k", "c_v");List<String> strLis 阅读全文
posted @ 2021-12-24 09:44 northli 阅读(520) 评论(0) 推荐(0) 编辑