将实体类中的null的属性设置为""

import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

// 将实体中的null属性,设置为""
    public static void nullToEmpty(User user){
        Field[] field = user.getClass().getDeclaredFields();
        for (int j = 0; j < field.length; j++) {     //遍历所有属性
            String name = field[j].getName();    //获取属性的名字
            //将属性的首字符大写,方便构造get,set方法
            name = name.substring(0, 1).toUpperCase() + name.substring(1);
            String type = field[j].getGenericType().toString();    //获取属性的类型
            if (type.equals("class java.lang.String")) {   //如果type是类类型,则前面包含"class ",后面跟类名
                try {
                    Method mGet = user.getClass().getMethod("get" + name);
                    String value = (String) mGet.invoke(user);    //调用getter方法获取属性值
                    if (value == null || "".equals(value)) {
                        Method mSet = user.getClass().getMethod("set" + name, new Class[]{String.class});
                        mSet.invoke(user, new Object[]{new String("")});
                    }
                } catch (NoSuchMethodException e) {
                    e.printStackTrace();
                } catch (IllegalAccessException e) {
                    e.printStackTrace();
                } catch (InvocationTargetException e) {
                    e.printStackTrace();
                }
            }
        }
    }

以上转自https://blog.csdn.net/weixin_42901057/article/details/90694320

你可能感兴趣的:(工具)