Java教程

反射赋值 解决类型转换异常的写法

本文主要是介绍反射赋值 解决类型转换异常的写法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
                 //反射进行赋值时 防止类型转换异常的标准写法
                            Type type = Nullable.GetUnderlyingType(propertyInfo.PropertyType); //返回可为空字段的类型
                            if (type!=null)
                            {
                                propertyInfo.SetValue(model,string.IsNullOrEmpty(newValue)? null:Convert.ChangeType(newValue,type),null);
                            }
                            else
                            {
                                propertyInfo.SetValue(model,string.IsNullOrEmpty(newValue)? null:Convert.ChangeType(newValue,propertyInfo.PropertyType),null);
                            }

其中 newValue 是要设置的值

这篇关于反射赋值 解决类型转换异常的写法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!