Live2D
//

MapUtils

1、引入maven依赖

<dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-collections4</artifactId>
      <version>4.2</version>
</dependency>

  

2、本文学习文档基于创建map对象

HashMap<String, Object> map = new HashMap<>(); 
map.put("name","lisi"); 
map.put("sex",man); 
map.put("age",18); 
map.put("money",null);

3、MapUtils常用方法

3.1、获取Map中指定key的value

使用getString(final Map map, final Object key)方法,当然,也可使用getString( Map map, Object key, String defaultValue )方法,当我们get属性值时候发生了转换异常的就会报错,为了避免这种报错,可以使用默认值的方法解决。

String name = MapUtils.getString(map, "name");

当我们获取Integer类型的时候,当类型不能转换时候报
java.lang.NullPointerException如下:

int money = MapUtils.getInteger(map,"money");

就可以使用getInteger( Map map, Object key, Integer defaultValue )方法解决。

int money = MapUtils.getInteger(map,"money",23);

 

3.2、其他的get属性值的方法

MapUtils中其他的get属性值的方法还有如下这些,使用方法和MapUtils.getString一样,这里就不再一一举例说明。

  • Object getObject(final Map map, final Object key):获取Object类型的值。
  • String getString(final Map map, final Object key):获取String类型的值。
  • Boolean getBoolean(final Map map, final Object key):获取Boolean类型的值。
  • Number getNumber(final Map map, final Object key):获取Number类型的值。
  • Byte getByte(final Map map, final Object key):获取Byte类型的值。
  • Short getShort(final Map map, final Object key):获取Short类型的值。
  • Integer getInteger(final Map map, final Object key):获取Integer类型的值。
  • Long getLong(final Map map, final Object key):获取Long类型的值。
  • Float getFloat(final Map map, final Object key):获取Float类型的值。
  • Double getDouble(final Map map, final Object key):获取Double类型的值。
  • Map getMap(final Map map, final Object key):获取Map类型的值。

 

3.3、Map判空

使用MapUtils.isEmpty方法和MapUtils.isNotEmpty方法对Map进行空判断。

boolean empty = MapUtils.isEmpty(map); 
boolean notEmpty = MapUtils.isNotEmpty(map);

3.4、将二维数组放入Map中

使用MapUtils.putAll方法。

String[][] user = {{"names","zhangfsan"},{"sexs","1f"}}; 
Map map1 = MapUtils.putAll(map, user);

  

MapUtils类的常用方法基本就是这些,我们在平时的开发中应该多使用开源的工具类,简洁高效我们的代码。

posted @ 2021-12-06 16:22  哦豁完蛋~  阅读(740)  评论(0编辑  收藏  举报