论坛首页 入门技术论坛

深度Clone以及序列化与反序列化的使用

浏览 1763 次
该帖已经被评为新手帖
作者 正文
   发表时间:2008-11-17  
 /**
     * Clone Object
     * @param obj
     * @return
     * @throws Exception
     */
    private static Object cloneObject(Object obj) throws Exception{
        ByteArrayOutputStream  byteOut = new ByteArrayOutputStream();  
        ObjectOutputStream out = new ObjectOutputStream(byteOut);  
        out.writeObject(obj);         
        ByteArrayInputStream byteIn = new ByteArrayInputStream(byteOut.toByteArray());  
        ObjectInputStream in =new ObjectInputStream(byteIn);        
        return in.readObject();
}
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics