码迷,mamicode.com
首页 > 其他好文 > 详细

判断对象的属性值是否为null

时间:2017-05-27 15:23:29      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:value   info   判断   div   min   obj   let   对象   white   

判断对象的属性值是否为null

核心处理:

    private Object getFieldValueByName(String fieldName, Object o) {
        try {
            String firstLetter = fieldName.substring(0, 1).toUpperCase();
            String getter = "get" + firstLetter + fieldName.substring(1);
            Method method = o.getClass().getMethod(getter, new Class[] {});
            Object value = method.invoke(o, new Object[] {});
            return value;
        } catch (Exception e) {
            logger.error(e.getMessage(), e);
            return null;
        }
    }

 

运用示例:

        DoctorVo doctorVo = new DoctorVo();
        // doctorVo.setId(3942);
        Object id = this.getFieldValueByName("id", doctorVo);
        if (null != id) {
            bdId = doctorVo.getId();
            logger.info("传递了医生ID,doctorId = " + bdId);
        }

 

判断对象的属性值是否为null

标签:value   info   判断   div   min   obj   let   对象   white   

原文地址:http://www.cnblogs.com/bridgestone29-08/p/6912816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!