会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
genghuilove
博客园
首页
新随笔
联系
订阅
管理
2023年3月28日
collectors.groupingby 多条件
摘要: List<Person> persons = new ArrayList<>();//列表persons.add(new Person("aaa", 6,"A"));persons.add(new Person("bbb", 8,"A"));persons.add(new Person("aaa",
阅读全文
posted @ 2023-03-28 15:42 麦田守望
阅读(461)
评论(0)
推荐(0)
编辑
2019年8月15日
List<String> 转 List<Long>
摘要: List<Long> cdids = Arrays.asList(params.get("cdids").toString().split(",")).stream().map(s -> Long.parseLong(s.trim())).collect(Collectors.toList());
阅读全文
posted @ 2019-08-15 17:29 麦田守望
阅读(13216)
评论(0)
推荐(0)
编辑
2019年8月6日
list.stream().filter
摘要: List<Long> cdIds=cdList.stream().map(JcCdxx::getId).collect(Collectors.toList()); //获取集合的所有id list.stream().filter(xs-> xs.getXmbh().equals((Long)quer
阅读全文
posted @ 2019-08-06 15:42 麦田守望
阅读(1647)
评论(0)
推荐(0)
编辑
2019年7月16日
Mybatis插入语句useGeneratedKeys="true"的用法
摘要: insert into tb_wrong_rec_apply (num, cid, `type`, `describe`, solution, seller_tel, seller_qq, seller_email, buyer_tel, buyer_qq, buyer_email, submi...
阅读全文
posted @ 2019-07-16 11:44 麦田守望
阅读(3770)
评论(0)
推荐(0)
编辑
2018年9月5日
jQuery 上传附件
摘要: 一. 1.引用js<script type="text/javascript" src="static/yhsystem/js/fileuploadExpand.js?v=1.2"></script> 2. <tr> <td style="width:82px;text-align:right;pa
阅读全文
posted @ 2018-09-05 17:15 麦田守望
阅读(233)
评论(0)
推荐(0)
编辑
2018年8月6日
SSM框架前台传中文到后台乱码问题的解决办法
摘要: 修改Tomcat 下 server.xml 配置文件 <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8"/>
阅读全文
posted @ 2018-08-06 17:27 麦田守望
阅读(198)
评论(0)
推荐(0)
编辑
2018年7月26日
zTree 获取当前节点下所有子节点(包含当前选中的节点)
摘要: var setting = { showLine: true, callback: { beforeClick: zTreeBeforeClick } }; //当前选中的节点 function zTreeBeforeClick(treeId, treeNode, clickFlag) { arrS
阅读全文
posted @ 2018-07-26 12:33 麦田守望
阅读(1217)
评论(0)
推荐(0)
编辑
2017年12月7日
jQuery 合并单元格
摘要: jQuery.fn.rowspan = function(colIdx) { //封装的一个JQuery小插件 return this.each(function(){ var that; $('tr', this).each(function(row) { $('td:eq('+colIdx+')
阅读全文
posted @ 2017-12-07 12:29 麦田守望
阅读(164)
评论(0)
推荐(0)
编辑
2017年9月7日
Json 字符串排序
摘要: var colId="lineName" //排序的字段名称 //对json进行降序排序函数 var desc = function(x,y) { return (x[colId] y[colId]) ? 1 : -1 } data.list.sort(asc); //数据排序
阅读全文
posted @ 2017-09-07 15:09 麦田守望
阅读(764)
评论(0)
推荐(0)
编辑
2017年9月6日
遍历List 删除某条数据
摘要: // 遍历删除 部门为空的数据 Iterator<PageData> it = vioList.iterator(); while(it.hasNext()){ PageData x = it.next(); if(x.get("deptName").equals("")){ it.remove()
阅读全文
posted @ 2017-09-06 19:54 麦田守望
阅读(873)
评论(0)
推荐(0)
编辑
下一页