Map参数处理工具类

依赖

<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
    <version>1.2.47</version>
</dependency>

工具类

import com.alibaba.fastjson.JSONObject;

import java.util.List;
import java.util.Map;

/**
 * @Auther: ZWeiHao
 * @Date: 2021/11/15 10:01
 * @Description: 后端使用map 接受参数时,解析map中的参数
 */

public class MapParams {

    /**
     * 将map中的参数解析为Integer类型
     * @param map 后端用于接受前端参数的集合
     * @param mapKey map中的键值
     * @return 返回null 标识前端未传参
     */
    public static Integer parseInteger(Map<String,Object> map,String mapKey){
        Object o = map.get(mapKey);
        if(o != null && o.toString().length() > 0){
            return Integer.valueOf(o.toString());
        }
        return null;
    }

    /**
     * 将map中的参数解析为Double类型
     * @param map 后端用于接受前端参数的集合
     * @param mapKey
     * @return 返回null 标识前端未传参
     */
    public static Double parseDouble(Map<String,Object> map,String mapKey){
        Object o = map.get(mapKey);
        if(o != null && o.toString().length() > 0){
            return Double.valueOf(o.toString());
        }
        return null;
    }

    /**
     * 将map中的参数解析为String类型
     * @param map 后端用于接受前端参数的集合
     * @param mapKey
     * @return 返回null 标识前端未传参
     */
    public static String parseString(Map<String,Object> map,String mapKey){

        Object o = map.get(mapKey);
        if(o != null && o.toString().length() > 0){
            return o.toString();
        }
        return null;
    }

    /**
     * 将map中的参数解析为Boolean类型
     * @param map 后端用于接受前端参数的集合
     * @param mapKey
     * @return 返回null 标识前端未传参
     */
    public static Boolean parseBoolean(Map<String,Object> map,String mapKey){

        Object o = map.get(mapKey);
        Boolean aBoolean = null;
        if(o != null && o.toString().length() > 0){
            aBoolean = Boolean.parseBoolean(o.toString());
            return aBoolean;
        }

        return null;
    }


    /**
     * 将前端传来数组,解析成集合
     * @param map 前端传来的参数集合
     * @param clazz
     * @param mapKey
     * @param <T>
     * @return  返回null 标识前端未传参
     */
    public static <T> List<T> parseArray(Map<String,Object> map,Class<T> clazz,String mapKey){
        Object o = map.get(mapKey);
        List<T> list = null;
        if(o != null && o.toString().length() > 0){
            list = JSONObject.parseArray(JSONObject.toJSONString(o), clazz);
            return list;
        }
        return null;
    }



}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值