12 2021 档案

摘要:戒 痴=陶醉,对付做事 阅读全文
posted @ 2021-12-28 13:50 northli 阅读(17) 评论(0) 推荐(0)
摘要:Excel固定显示某一行, 1.选中需要冻结的窗格的下一行 2.视图>冻结窗格>冻结拆分窗格 阅读全文
posted @ 2021-12-24 12:15 northli 阅读(317) 评论(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 阅读(297) 评论(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 阅读(552) 评论(0) 推荐(0)
摘要:废话可以当做消遣 阅读全文
posted @ 2021-12-23 21:19 northli 阅读(20) 评论(0) 推荐(0)
摘要:因为里面存入了一个空元素,检查之前的代码 阅读全文
posted @ 2021-12-23 17:21 northli 阅读(389) 评论(0) 推荐(0)
摘要:带人带的好人感谢你,带不好人骂你 阅读全文
posted @ 2021-12-17 14:48 northli 阅读(15) 评论(0) 推荐(0)
摘要:前后端交互通过url接口的形式 阅读全文
posted @ 2021-12-16 10:49 northli 阅读(100) 评论(0) 推荐(0)
摘要:页面引入js,有两个src引入需要更新<script src="../static/js/login/login2.js" th:src="@{/js/login/login2.js}"></script> 阅读全文
posted @ 2021-12-15 11:19 northli 阅读(70) 评论(0) 推荐(0)
摘要:递归是有返回值的链条 阅读全文
posted @ 2021-12-15 09:44 northli 阅读(11) 评论(0) 推荐(0)
摘要:清除浏览器缓存可以刷新js 阅读全文
posted @ 2021-12-14 16:53 northli 阅读(41) 评论(0) 推荐(0)
摘要:String str = "X00333,J00222,J00001,0";String[] strArray = str.split(",");List<String> strList = strList = Arrays.asList(strArray);Collections.reverse( 阅读全文
posted @ 2021-12-13 11:16 northli 阅读(70) 评论(0) 推荐(0)
摘要:public enum DEPT_TJBJ1 { KV1("k1", "v1"), KV2("k2", "v2"), KV3("k3", "v3"), KV4("k4", "v4"); // 成员变量 private String key; private String value; // 构造方法 阅读全文
posted @ 2021-12-07 09:19 northli 阅读(1410) 评论(0) 推荐(0)
摘要:sql insert 插入时间戳 INSERT INTO `jssltj3`.`sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, 阅读全文
posted @ 2021-12-06 13:59 northli 阅读(1593) 评论(0) 推荐(0)
摘要:var index = parent.layer.getFrameIndex(window.name);parent.layer.close(index); 阅读全文
posted @ 2021-12-04 15:33 northli 阅读(72) 评论(0) 推荐(0)
摘要:后台报错:org.springframework.web.multipart.support.MissingServletRequestPartException: Required request part 'file_data' is not present 原因:前后台参数不匹配,前台没有fi 阅读全文
posted @ 2021-12-03 15:03 northli 阅读(4985) 评论(0) 推荐(0)