0%

对象深度克隆

对象深度克隆

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import java.io.BufferedInputStream;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;

public class UtilityHelper {
/**
* 对象深度克隆
* @param obj
* 对象
* @return
* 深度克隆后的对象,失败返回null
* @throws Exception
*/
public static Object cloneObject(Object obj) throws Exception {
Object cloneObj = null;
ObjectOutputStream objectOutput = null;
ObjectInputStream objectInput = null;
try {
ByteArrayOutputStream byteOutput = new ByteArrayOutputStream();
objectOutput = new ObjectOutputStream(byteOutput);
objectOutput.writeObject(obj);

ByteArrayInputStream byteInput = new ByteArrayInputStream(byteOutput.toByteArray());
objectInput = new ObjectInputStream(byteInput);

cloneObj = objectInput.readObject();

} catch (Exception e) {
//System.out.println(e.getMessage());

throw e;

} finally {
if (objectInput != null) {
try {
objectInput.close();
} catch (IOException e) {
//System.out.println(e.getMessage());
}
}
if (objectOutput != null) {
try {
objectOutput.close();
} catch (IOException e) {
//System.out.println(e.getMessage());
}
}
}
return cloneObj;
}
}
layicr 微信

微信

layicr 支付宝

支付宝