java对象复制和属性值复制工具类[通俗易懂]

java对象复制和属性值复制工具类[通俗易懂]两个不同类型的对象中有字段名称不区分大小写的情况下一样,字段含义一样,需要组装到另一个对象中去,然后就写了一个这种工具类我的类型比较特殊,老系统和新系统的对象命名大小写命名不一致,并且字段相同类型也有不一致的情况,所以自己写了一个,不是很完美基本能用。温馨提示:如果同一种类型的对象属性字段名equals相等并且类型一致。则完全可以用commons-beanutils包或者spring包

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

两个不同类型的对象中有字段名称不区分大小写的情况下一样,字段含义一样,需要组装到另一个对象中去,然后就写了一个这种工具
我的类型比较特殊,老系统和新系统的对象命名大小写命名不一致,并且字段相同类型也有不一致的情况,所以自己写了一个,
不是很完美基本能用。

温馨提示:
如果同一种类型的对象 属性字段名equals相等 并且类型一致。则完全可以用commons-beanutils包或者spring包中
的BeanUtils工具类中的copey属性方法。

/**
* 实体类字段值相同的复制
*
* @author 隔壁老王 2017年8月18日
*/
public class CopyBeanUtil {
static Logger log = LoggerFactory.getLogger(CopyBeanUtil.class);
/**
* 复制sour里属性不为空的值到obje为空的属性
*
* @param obje    目标实体类
* @param sour    源实体类
* @param isCover 是否保留obje类里不为null的属性值(true为保留源值,属性为null则赋值)
* @return obje
*/
public static Object Copy(Object obje, Object sour, boolean isCover) {
Field[] fields = sour.getClass().getDeclaredFields();
for (int i = 0, j = fields.length; i < j; i++) {
String propertyName = fields[i].getName();
Object propertyValue = getProperty(sour, propertyName);
if (isCover) {
if (getProperty(obje, propertyName) == null && propertyValue != null) {
Object setProperty = setProperty(obje, propertyName, propertyValue);
}
} else {
Object setProperty = setProperty(obje, propertyName, propertyValue);
}
}
return obje;
}
/**
* 复制sour里属性不为空的值到obj里并相加
*
* @param obj     目标实体类
* @param sour    源实体类
* @param isCover
* @return obj
*/
public static Object CopyAndAdd(Object obj, Object sour, boolean isCover) {
Field[] fields = sour.getClass().getDeclaredFields();
for (int i = 0, j = fields.length; i < j; i++) {
String propertyName = fields[i].getName();
Object sourPropertyValue = getProperty(sour, propertyName);
Object objPropertyValue = getProperty(obj, propertyName);
if (isCover) {
if (objPropertyValue == null && sourPropertyValue != null) {
Object setProperty = setProperty(obj, propertyName, sourPropertyValue);
} else if (objPropertyValue != null && sourPropertyValue == null) {
Object setProperty = setProperty(obj, propertyName, objPropertyValue);
} else if (objPropertyValue != null && sourPropertyValue != null) {
Object setProperty = setProperty(obj, propertyName, ((int) sourPropertyValue) + (int) objPropertyValue);
}
}
}
return obj;
}
/**
* 得到值
*
* @param bean
* @param propertyName
* @return
*/
private static Object getProperty(Object bean, String propertyName) {
Class clazz = bean.getClass();
try {
Field field = clazz.getDeclaredField(propertyName);
Method method = clazz.getDeclaredMethod(getGetterName(field.getName(),field.getType()), new Class[]{});
return method.invoke(bean, new Object[]{});
} catch (Exception e) {
}
return null;
}
/**
* 给bean赋值
*
* @param bean
* @param propertyName
* @param value
* @return
*/
private static Object setProperty(Object bean, String propertyName, Object value) {
Class clazz = bean.getClass();
try {
Field field = clazz.getDeclaredField(propertyName);
Method method = clazz.getDeclaredMethod(getSetterName(field.getName()), new Class[]{field.getType()});
return method.invoke(bean, new Object[]{value});
} catch (Exception e) {
}
return null;
}
/**
* 根据变量名得到get方法
*
* @param propertyName
* @return
*/
private static String getGetterName(String propertyName) {
String method ;
if( propertyName.length()>1&& Character.isUpperCase(propertyName.charAt(1))){
method = "get" +propertyName;
}else{
method = "get" + propertyName.substring(0, 1).toUpperCase() + propertyName.substring(1);
}
return method;
}
/**
* 根据变量名和类型获取getter方法
* @param propertyName
* @param type
* @return
*/
private static String getGetterName(String propertyName, Class<?> type) {
String method ;
if(type==Boolean.class|| type==boolean.class){
if("is".equalsIgnoreCase(propertyName.substring(0, 2))){
return propertyName;
}else{
return "is" + propertyName.substring(0, 1).toUpperCase() + propertyName.substring(1);
}
}
if( propertyName.length()>1&& Character.isUpperCase(propertyName.charAt(1))){
method = "get" +propertyName;
}else{
method = "get" + propertyName.substring(0, 1).toUpperCase() + propertyName.substring(1);
}
return method;
}
/**
* 得到setter方法
*
* @param propertyName 变量名
* @return
*/
private static String getSetterName(String propertyName) {
//        String method = "set" + propertyName.substring(0, 1).toUpperCase() + propertyName.substring(1);
String method ;
if( propertyName.length()>1&& Character.isUpperCase(propertyName.charAt(1))){
method = "set" +propertyName;
}else{
method = "set" + propertyName.substring(0, 1).toUpperCase() + propertyName.substring(1);
}
return method;
}
/**
* 父类集合转成子类集合集合通用方法(子类集合接收父类集合)
*
* @param list 父类集合
* @param <T>  子类
* @param <E>  父类
* @return
*/
public static <T, E> List<T> chang2ChildClassList(List<E> list) {
List<T> alist = new ArrayList<>();
for (E o : list) {
alist.add((T) o);
}
return alist;
}
/**
* 属性copy  复制sour里属性和obje里属性值忽略大小写相同的 ,不为空的值赋值到obje里
* 如果存在属性复杂类型并为有效值慎用或改进
*
* @param obje
* @param sour
* @param isCover 是否保留obje里面属性值不为空的字段值
* @return
*/
public static Object copyByIgnoreCase(Object obje, Object sour, boolean isCover) {
try {
Field[] objFields = obje.getClass().getDeclaredFields();
Field[] sourFields = sour.getClass().getDeclaredFields();
for (int i = 0; i < sourFields.length; i++) {
String sourPropertyName = sourFields[i].getName();
//获取来源对象的属性值
Object propertyValue = getSourPropertyValue(sour, sourPropertyName);
for (int j = 0; j < objFields.length; j++) {
try {
String objPropertyName = objFields[j].getName();
if (objPropertyName.equalsIgnoreCase(sourPropertyName)) {
if (isCover) {
if (getProperty(obje, objPropertyName) == null && propertyValue != null) {
setObjProperty(obje, objPropertyName, propertyValue);
}
} else {
setObjProperty(obje, objPropertyName, propertyValue);
}
break;
}
} catch (Exception e) {
log.error("给目标bean赋值出错,objPropertyName:{},value:{}",sourPropertyName,propertyValue,e);
e.printStackTrace();
}
}
}
} catch (SecurityException e) {
e.printStackTrace();
log.error("给目标bean赋值出错,obje:{},sour:{}", JSON.toJSONString(obje), JSON.toJSONString(sour),e);
}
return obje;
}
/**
* 根据属性名获取的值
*
* @param sourceBean
* @param sourcePropertyName
* @return
*/
private static Object getSourPropertyValue(Object sourceBean, String sourcePropertyName) {
Class clazz = sourceBean.getClass();
try {
Field field = clazz.getDeclaredField(sourcePropertyName);
Method method = clazz.getDeclaredMethod(getGetterName(field.getName(),field.getType()), new Class[]{});
return method.invoke(sourceBean, new Object[]{});
} catch (Exception e) {
log.error("获取属性名(不区分大小写)相似的值赋值出差", e);
}
return null;
}
/**
* 给目标bean赋值
*
* @param objBean
* @param sourcePropertyName
* @param value
* @return
*/
private static Object setObjPropertyBySourceProperty(Object objBean, String sourcePropertyName, Object value) {
Class clazz = objBean.getClass();
Field[] fields = clazz.getDeclaredFields();
try {
for (int i = 0, j = fields.length; i < j; i++) {
String propertyName = fields[i].getName();
if (sourcePropertyName.equalsIgnoreCase(propertyName)) {
Field field = clazz.getDeclaredField(propertyName);
if (field.getType() == BigDecimal.class) {
if (value instanceof String) {
value = new BigDecimal(String.valueOf(value));
} else if (value instanceof Integer || value instanceof Double) {
//							传double直接new BigDecimal,数会变大
value = BigDecimal.valueOf(Double.parseDouble(String.valueOf(value)));
}
}
if (field.getType() == Double.class || field.getType() == double.class) {
if (value instanceof BigDecimal) {
DecimalFormat df = new DecimalFormat("#.000000");
Double v = Double.parseDouble(String.valueOf(value));
value = df.format(v);
}
}
Method method = clazz.getDeclaredMethod(getSetterName(field.getName()), new Class[]{field.getType()});
return method.invoke(objBean, new Object[]{value});
}
}
} catch (Exception e) {
}
return null;
}
/**
* 给目标bean赋值
*
* @param objBean
* @param propertyName
* @param value
* @return
*/
private static Object setObjProperty(Object objBean, String propertyName, Object value) {
Class clazz = objBean.getClass();
try {
Field field = clazz.getDeclaredField(propertyName);
if (field.getType() == BigDecimal.class) {
if (value instanceof String) {
value = new BigDecimal(String.valueOf(value));
} else if (value instanceof Integer || value instanceof Double) {
//							传double直接new BigDecimal,数会变大
value = BigDecimal.valueOf(Double.parseDouble(String.valueOf(value)));
}
}
if (field.getType() == Double.class || field.getType() == double.class) {
if (value instanceof BigDecimal) {
DecimalFormat df = new DecimalFormat("#.000000");
Double v = Double.parseDouble(String.valueOf(value));
value =new BigDecimal(df.format(v));
}
}
if (field.getType() == Integer.class || field.getType() == int.class) {
if (value instanceof Float) {
value = Math.round(Float.parseFloat(String.valueOf(value)));
}
}
Method method = clazz.getDeclaredMethod(getSetterName(field.getName()), new Class[]{field.getType()});
log.info("给目标bean赋值,propertyName:{},value:{}",propertyName,value);
Object obj = method.invoke(objBean, new Object[]{value});
return obj;
} catch (Exception e) {
log.error("给目标bean赋值出错,propertyName:{},value:{}",propertyName,value,e);
}
return null;
}
public static void main(String[] args) {
//        ReAlarmResult re= new ReAlarmResult();
//        re.setAlarmContent("sdfsdfsd");
//        re.setBlat(2.234343);
//        re.setBlon(34.34324);
//        ReAlarmResult s = new ReAlarmResult();
//        s.setAlarmContent("222");
//        copyByIgnoreCase(s,re,true);
//        System.out.printf(JSON.toJSONString(s));
//        BeanUtils.copyProperties();
//BeanUtils.copyProperties();
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/186416.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • cdr9导出对话框遮挡怎么办_sldprt文件ug怎么打开

    cdr9导出对话框遮挡怎么办_sldprt文件ug怎么打开说明因为之前旧项目采用的是MFC+BCG界面库的方法实现的。维护旧项目过程中,遇到选择文件对话框没有从默认位置选择的问题,学习和思考后,问题得到解决,特此记录。原来的BCG中配置选择的方法是这样的: lpszDefExt=_T(“DAT”); lpszFilter=_T(“文件|*.dat|\ 文件|*.bln|\ 文件|*.xyz|\ 文件|*.txt||”); m_editDataName.EnableFileBrowseButton(

  • java算法之身份证号码验证

    调用时直接new IDCard().verify(身份证id);就可以了实现代码如下:public class IDCard { private String _codeError; //wi =2(n-1)(mod 11) final int[] wi = {7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 1

  • 传说中的800句记7000词「建议收藏」

    登录 | 注册ZHB_McCoy的专栏目录视图摘要视图订阅一键管理你的代码     攒课–我的学习我做主     【hot】直播技术精选    关闭 传说中的800句记7000词

  • intellj 激活码2021(最新序列号破解)

    intellj 激活码2021(最新序列号破解),https://javaforall.cn/100143.html。详细ieda激活码不妨到全栈程序员必看教程网一起来了解一下吧!

  • 群体结构分析软件admixture安装及使用经验

    群体结构分析软件admixture安装及使用经验1.软件下载及安装admixture:使用conda进行软件安装condainstalladmixture2.VCF文件格式转换为bed格式文件(似乎admixture可以直接识别ped/map文件格式的输入文件)vcf文件转为ped文件:方法1:使用vcftools支持将vcf文件转换成plink对应的ped/map格式,如下vcftools–vcfinput.vcf–plink–outoutput方法2:plink支持直接读取vcf文件..

    2022年10月24日
  • 极验验证_验证码平台

    极验验证_验证码平台发送验证码下面是具体实现步骤:handleSendCode(){const{mobile}=this.formaxios({method:'GET',url

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号