target和source之间的转换(目标对象和源对象之间的转换)

public class Transfer {


// 定义两个Class对象
private Class sourceClazz;
private Class targetClazz;


public Transfer() {
Type[] c = ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments();
sourceClazz = (Class) c[0];
targetClazz = (Class) c[1];
}


// 源文件和目标文件之间的转换
protected void convertExt(Source source, Target target) {
}


protected void reverseConvertExt(Target target, Source source) {
};
// 将目标文件List集合转为源文件list集合


public List<Source> reverseConvert(List<Target> targetList) {
// 首先判断目标list集合是否为空,如果为空则返回null
if (CollectionUtils.isEmpty(targetList)) {
return null;
}
// 创建源文件list集合
List<Source> sourceList = new ArrayList<>(targetList.size());
for (Target target : targetList) {
Source source = null;
try {
source = (Source) sourceClazz.newInstance();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
BeanUtils.copyProperties(target, source);
reverseConvertExt(target, source);
sourceList.add(source);
}
return sourceList;
}


// 将源文件List集合转为目标文件list集合
public List<Target> convert(List<Source> sourceList) {
// 判断源文件是否为空
if (CollectionUtils.isEmpty(sourceList)) {
return null;
}
List<Target> targetList = new ArrayList<>(sourceList.size());
for (Source source : sourceList) {
Target target = null;
try {
target = (Target) targetClazz.newInstance();
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
BeanUtils.copyProperties(source, target);
convertExt(source, target);
targetList.add(target);
}
return targetList;
}


// 将源文件转为目标文件
public Target convert(Source source) {
// 判断源文件是否为空
if (source == null) {
return null;
}
Target target = null;
try {
target = (Target) targetClazz.newInstance();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
BeanUtils.copyProperties(source, target);
convertExt(source, target);
return target;
}


// 将目标文件反转为源文件
public Source reverseConvert(Target target) {
if (target == null) {
return null;
}
Source source = null;
try {
source = (Source) sourceClazz.newInstance();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
BeanUtils.copyProperties(target, source);
reverseConvertExt(target, source);
return source;
}


}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章