java
user-ds
这个作者很懒,什么都没留下…
展开
-
List<Map>去重
List<Map<String, Object>> personsOneList = new ArrayList<>(); Map<String, Object> oneProperties = new HashMap<>(); oneProperties.put("id", "001"); oneProperties.put("name", "jack1"); oneProper..原创 2020-08-05 15:20:04 · 6634 阅读 · 0 评论 -
Java 8 collection 特性
package com.aidysoft.prisonmanagement.utiles.ownTest;import java.util.*;import java.util.stream.Collectors;public class Java8CollectExample { public static void main(String[] args) { ...原创 2019-08-30 08:48:19 · 214 阅读 · 0 评论 -
格式化 toString
//引入 commonslang 格式化 toStringReflectionToStringBuilder.toString(item, ToStringStyle.JSON_STYLE)原创 2019-09-19 15:53:09 · 241 阅读 · 0 评论 -
java 对象属性 复制
BeanUtils.copyProperties(旧对象, 新对象);原创 2019-09-24 17:26:14 · 300 阅读 · 0 评论 -
Java8 集合 例子
package com.aidysoft.prisonmanagement.utiles.ownTest;import com.google.common.collect.Lists;import java.util.*;import java.util.stream.Collectors;public class Java8CollectExample { public...原创 2019-09-25 08:57:47 · 246 阅读 · 0 评论