02_今日API使用

1、Java8新特性Stream操作list

stream().filter()和 stream().map()的用法
.filter一般适用于list集合,主要作用就是模拟sql查询,从集合中查询想要的数据。filter里面的参数user是指集合里面的每一项。
	如:过滤得到List 中User的身份籍贯信息是山西的数据,并返回数据到list集合
.map一般使用于将流中的元素映射到另一个流中,可以将当前流中的T类型数据转换为另一种R类型的流。
	如:获取List中所有User的身份证号,并存放在list集合

filter和map结合使用
list.stream()
           .filter(record -> record.startsWith("aaa"))
           .map(record ->{return "<"+record+">";})
    	   .collect(Collectors.toList());

2、线程安全的格式化时间

LocalDateTime localDateTime = LocalDateTime.now();当前时间
//格式化时间:线程安全的:DateTimeFormatter
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String format = dateTimeFormatter.format(localDateTime);

3、判断空与非空

StringUtils.isBlank  StringUtils.isEmpty
StringUtils.isNotBlank  StringUtils.isNotEmpty

4、JSONObject.parseObject(objectStr, Map.class)

//Json字符串
String objectStr="{\"name\":\"JSON\",\"age\":\"24\",\"address\":\"北京市西城区\"}";
//将Json字符串解析成Map集合
Map map = JSONObject.parseObject(objectStr, Map.class);
//打印输出map
System.out.println(map);
//输出结果
{address=北京市西城区, name=JSON, age=24}

你可能感兴趣的:(实践总结,java)