public static <T> T clone(T obj) throws Exception {
ObjectOutputStream oos = null;
ByteArrayOutputStream bos = null;
ObjectInputStream ois = null;
bos = new ByteArrayOutputStream();
oos = new ObjectOutputStream(bos);
oos.writeObject(obj);
oos.flush();
ois = new ObjectInputStream(new ByteArrayInputStream(bos.toByteArray()));
return (T) ois.readObject();
}
原文地址:http://6817977.blog.51cto.com/6807977/1826813