Java常用对象操作工具代码实例

网友投稿 269 2023-02-14

Java常用对象操作工具代码实例

对象复制(反射法)

public static void copyProp(Object from, Object to, String... filterProp) {

HashSet filterSet = new HashSet(Arrays.asList(filterProp));

Class> fromc = from.getClass();

Class> toc = to.getClass();

List to_fields = new ArrayList() ;

while (toc != null) {

CYuTWSs 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();

}

}

}

只copy有值对象

不需要copy的属性用filterProp

是能过反射属性注入方法实现,所有属性的名称类型必须一样

对象复制(fastjson转换)

单个

public static T bean2OtherBean(Object bean, Class tClass){

return JSON.parseObject(JSON.toJSONString(bean),tClass);

}

列表

public static List list2OtherList(List originList, Class tClass){

List 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 Map bean2map(Object obj) throws IllegalAccessException {

Map 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) map;

}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:如何关闭 IDEA 自动更新
下一篇:五分钟带你了解Java的接口数据校验
相关文章

 发表评论

暂时没有评论,来抢沙发吧~