C# PropertyDescriptor.GetValue(null)Object reference not set to an instance of an object
时间: 2023-09-26 20:10:29 浏览: 130
这个错误提示说明你尝试在一个空引用上调用 `PropertyDescriptor.GetValue()` 方法。`GetProperty()` 方法返回的是一个 `PropertyDescriptor` 对象,你需要确保这个对象不为空,然后再调用 `GetValue()` 方法。
例如,你可以使用以下代码来避免空引用错误:
```csharp
PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(YourClass))["YourProperty"];
if (property != null)
{
object value = property.GetValue(null);
// 使用获取到的值进行其他操作
}
```
在这个示例中,我们首先获取 `YourProperty` 的 `PropertyDescriptor` 对象,并进行了空引用检查。只有当 `property` 不为空时,才调用 `GetValue()` 方法来获取属性的值。
相关问题
PropertyDescriptor.getPropertyType为空
`PropertyDescriptor.getPropertyType()` 方法返回属性的类型,但是如果属性是一个动态代理对象,这个方法可能会返回 `null`。这通常是因为动态代理对象没有一个固定的类型,而是在运行时构建的。如果你需要获取动态代理对象的类型,可以考虑使用 `Proxy.getInvocationHandler(proxy)` 方法获取代理对象的实际处理程序,并从处理程序中获取类型信息。例如:
```java
Object proxy = ... // 获取动态代理对象
InvocationHandler handler = Proxy.getInvocationHandler(proxy);
if (handler instanceof MyInvocationHandler) {
MyInvocationHandler myHandler = (MyInvocationHandler) handler;
Class<?> targetType = myHandler.getTargetType();
// 处理 targetType
} else {
// 处理非 MyInvocationHandler 的情况
}
```
其中,`MyInvocationHandler` 是你自己实现的代理处理程序类,它应该保存了代理对象的类型信息。你需要根据你的实际情况来实现 `MyInvocationHandler` 类。
package com.bjsasc.finance.common.utils; import java.beans.BeanInfo; import java.beans.Introspector; import java.beans.PropertyDescriptor; import java.lang.reflect.Field; import java.util.HashMap; import java.util.Map; public class JavaBeanUtil { /** * * @param source 被复制的实体类对象 * @param to 复制完后的实体类对象 * @throws Exception */ public static void Copy(Object source, Object to) throws Exception { // 获取属性 BeanInfo sourceBean = Introspector.getBeanInfo(source.getClass(),java.lang.Object.class); PropertyDescriptor[] sourceProperty = sourceBean.getPropertyDescriptors(); BeanInfo destBean = Introspector.getBeanInfo(to.getClass(),java.lang.Object.class); PropertyDescriptor[] destProperty = destBean.getPropertyDescriptors(); try { for (int i = 0; i < sourceProperty.length; i++) { for (int j = 0; j < destProperty.length; j++) { if (sourceProperty[i].getName().equals(destProperty[j].getName())) { // 调用source的getter方法和dest的setter方法 destProperty[j].getWriteMethod().invoke(to,sourceProperty[i].getReadMethod().invoke(source)); break; } } } } catch (Exception e) { throw new Exception("属性复制失败:" + e.getMessage()); } } /** * Pojo -> Map<String, Object> * @param obj * @return * @throws Exception */ public static Map<String,Object> object2Map(Object obj)throws Exception{ Map<String,Object> map =new HashMap<>(); Field[] fields = obj.getClass().getDeclaredFields(); for(Field field:fields){ field.setAccessible(true); map.put(field.getName(), field.get(obj)); } return map; } } 帮我优化下这个代码,考虑对象中有对象和对象集合的情况
下面是对 JavaBeanUtil 类的优化:
1. 添加私有构造函数,避免该类被实例化。
2. 在 Copy 方法中添加对参数为空的判断,避免空指针异常。
3. 在 Copy 方法中,使用 Map 存储类属性名和对应的属性描述器,避免重复获取,提高效率。
4. 改进 Copy 方法,支持复制对象中包含的对象和对象集合。
5. 将 object2Map 方法改为 genericObjectToMap,更好地传达其作用。
6. genericObjectToMap 方法使用泛型,支持更多类型的对象。
7. 在 genericObjectToMap 方法中,使用 Map 存储类属性名和对应的属性值,避免重复获取,提高效率。
8. genericObjectToMap 方法中添加对参数为空的判断。
下面是优化后的代码:
```
package com.bjsasc.finance.common.utils;
import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Field;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public final class JavaBeanUtil {
private JavaBeanUtil() {
throw new AssertionError("Cannot instantiate the utility class");
}
/**
* 复制 source 对象的属性到 to 对象中
*
* @param source 被复制的实体类对象
* @param to 复制完后的实体类对象
* @throws Exception
*/
public static void copy(Object source, Object to) throws Exception {
if (source == null || to == null) {
throw new IllegalArgumentException("参数不能为空");
}
// 获取属性
BeanInfo sourceBean = Introspector.getBeanInfo(source.getClass(), java.lang.Object.class);
PropertyDescriptor[] sourceProperty = sourceBean.getPropertyDescriptors();
BeanInfo destBean = Introspector.getBeanInfo(to.getClass(), java.lang.Object.class);
PropertyDescriptor[] destProperty = destBean.getPropertyDescriptors();
Map<String, PropertyDescriptor> destPropMap = new HashMap<>();
for (PropertyDescriptor desc : destProperty) {
destPropMap.put(desc.getName(), desc);
}
for (PropertyDescriptor srcDesc : sourceProperty) {
PropertyDescriptor destDesc = destPropMap.get(srcDesc.getName());
if (destDesc != null && destDesc.getWriteMethod() != null && srcDesc.getReadMethod() != null) {
Type srcType = srcDesc.getReadMethod().getGenericReturnType();
Type destType = destDesc.getWriteMethod().getGenericParameterTypes()[0];
if (isAssignable(srcType, destType)) {
Object value = srcDesc.getReadMethod().invoke(source);
if (value != null) {
if (value instanceof List) {
List<?> srcList = (List<?>) value;
List<Object> destList = new ArrayList<>();
for (Object srcObj : srcList) {
Object destObj = srcObj.getClass().newInstance();
copy(srcObj, destObj);
destList.add(destObj);
}
value = destList;
} else {
Object destObj = value.getClass().newInstance();
copy(value, destObj);
value = destObj;
}
destDesc.getWriteMethod().invoke(to, value);
}
}
}
}
}
/**
* 将对象转换为 Map
*
* @param obj
* @return
* @throws Exception
*/
public static Map<String, Object> genericObjectToMap(Object obj) throws Exception {
if (obj == null) {
throw new IllegalArgumentException("参数不能为空");
}
Map<String, Object> map = new HashMap<>();
Field[] fields = obj.getClass().getDeclaredFields();
for (Field field : fields) {
field.setAccessible(true);
Type type = field.getGenericType();
Object value = field.get(obj);
if (value == null) {
continue;
}
if (type instanceof ParameterizedType) {
ParameterizedType pType = (ParameterizedType) type;
Type[] argTypes = pType.getActualTypeArguments();
if (argTypes.length == 1 && argTypes[0] instanceof Class && List.class.isAssignableFrom(field.getType())) {
List<?> list = (List<?>) value;
List<Map<String, Object>> listMap = new ArrayList<>();
for (Object objElem : list) {
listMap.add(genericObjectToMap(objElem));
}
value = listMap;
}
} else {
if (!isAssignable(type, Map.class)) {
map.put(field.getName(), value);
}
}
}
return map;
}
private static boolean isAssignable(Type srcType, Type destType) {
if (srcType.equals(destType)) {
return true;
}
if (destType.equals(Object.class)) {
return true;
}
if (destType instanceof Class && srcType instanceof Class) {
Class<?> destClass = (Class<?>) destType;
Class<?> srcClass = (Class<?>) srcType;
if (destClass.isAssignableFrom(srcClass)) {
return true;
}
}
return false;
}
}
```
上述代码改进了原有的 copy 方法,支持复制对象中包含的对象和对象集合,同时转换对象到 Map 的方法 genericObjectToMap 也进行了优化,支持更多类型的对象。
阅读全文