上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 35 下一页
摘要: public static List<BaseEntity> getPageList(List<? extends BaseEntity> childList){ Integer pageNum = 0; Integer pageSize = 2; List<BaseEntity> baseList 阅读全文
posted @ 2022-01-10 21:07 northli 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 1.向上取整Math.ceil(2.4)// 输出3 2.四舍五入// 输出2Math.round(2.499) // 输出3 Math.round(2.6) 3.向下取整 // 输出2Math.floor(2.9)参考链接:https://blog.csdn.net/gongxiaoyi9511/ 阅读全文
posted @ 2022-01-05 15:48 northli 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 戒 痴=陶醉,对付做事 阅读全文
posted @ 2021-12-28 13:50 northli 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 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) 编辑
摘要: 废话可以当做消遣 阅读全文
posted @ 2021-12-23 21:19 northli 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 因为里面存入了一个空元素,检查之前的代码 阅读全文
posted @ 2021-12-23 17:21 northli 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 带人带的好人感谢你,带不好人骂你 阅读全文
posted @ 2021-12-17 14:48 northli 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 前后端交互通过url接口的形式 阅读全文
posted @ 2021-12-16 10:49 northli 阅读(87) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 35 下一页