public static Object deepClone(Object obj){
if(obj == null){
return null;
}
try {
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
Object cloneObj = null;
ObjectOutputStream out = new ObjectOutputStream(byteOut);
out.writeObject(obj);
ByteArrayInputStream byteIn = new ByteArrayInputStream(byteOut.toByteArray());
ObjectInputStream in = new ObjectInputStream(byteIn);
cloneObj = in.readObject();
return cloneObj;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
package test;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
public class ObjectClone {
/**
* 测试对象
*/
private static class Person implements Serializable {
private String name;
private int age;
Person(String name, int age){
this.name = name;
this.age = age;
}
@Override
public String toString() {
return String.format("name: %s\nage: %s", name, age);
}
}
/**
* 测试函数
*/
public static void main(String[] args) {
Person person = new Person("Henry", 22);
Person newPerson = (Person)ObjectClone.deepClone(person);
System.out.println(newPerson);
}
/**
* 工具类
*
* @param obj
* @return
*/
public static Object deepClone(Object obj){
if(obj == null){
return null;
}
try {
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
Object cloneObj = null;
ObjectOutputStream out = new ObjectOutputStream(byteOut);
out.writeObject(obj);
ByteArrayInputStream byteIn = new ByteArrayInputStream(byteOut.toByteArray());
ObjectInputStream in = new ObjectInputStream(byteIn);
cloneObj = in.readObject();
return cloneObj;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有