
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 · 6680 阅读 · 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 · 253 阅读 · 0 评论 -
格式化 toString
//引入 commonslang 格式化 toString ReflectionToStringBuilder.toString(item, ToStringStyle.JSON_STYLE)原创 2019-09-19 15:53:09 · 265 阅读 · 0 评论 -
java 对象属性 复制
BeanUtils.copyProperties(旧对象, 新对象);原创 2019-09-24 17:26:14 · 337 阅读 · 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 · 275 阅读 · 0 评论