对象复制(反射法)
public static void copyProp(Object from, Object to, String... filterProp) { HashSet<String> filterSet = new HashSet<String>(Arrays.asList(filterProp)); Class<?> fromc = from.getClass(); Class<?> toc = to.getClass(); List<Field> to_fields = new ArrayList<Field>() ; while (toc != null) { to_fields.addAll(Arrays.asList(toc.getDeclaredFields())); toc = toc.getSuperclass(); } for (Field to_field : to_fields) { try{ if (filterSet.contains(to_field.getName())||"serialVersionUID".equals(to_field.getName())) { continue; } Field from_field = null; try{ from_field = fromc.getDeclaredField(to_field.getName()); }catch (Exception e){ continue; } from_field.setAccessible(true); Object value = from_field.get(from); if(value==null){ continue; } to_field.setAccessible(true); to_field.set(to, value); }catch (Exception e){ e.printStackTrace(); } } }
对象复制(fastJson转换)
单个
public static <T> T bean2OtherBean(Object bean, Class<T> tClass){ return JSON.parseObject(JSON.toJSONString(bean),tClass); }
列表
public static <T> List<T> list2OtherList(List originList, Class<T> tClass){ List<T> list = new ArrayList<>(); if(!CollectionUtils.isEmpty(originList)){ for (Object obj : originList) { T t = bean2OtherBean(obj,tClass); list.add(t); } } return list; }
fastjson实现,属性不一样必须用注解
对象转MAP
public static <K,V> Map<K,V> bean2map(Object obj) throws IllegalAccessException { Map<String, Object> map = new HashMap<>(); Class<?> clazz = obj.getClass(); for (Field field : clazz.getDeclaredFields()) { field.setAccessible(true); String fieldName = field.getName(); Object value = field.get(obj); map.put(fieldName, value); } return (Map<K, V>) map; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持呐喊教程。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。