- 浏览: 27831 次
- 性别:
- 来自: 北京
最新评论
文章列表
/**
* 将压缩后的 Object 数据解压缩
*
* @param compressed 压缩后的 Object 数据
* @return 解压后的字符串 Object
* @throws Exception
*/
public static final Object decompress(Object compressed) {
if(compressed == null)
return null;
InputStream in = null;
ZipInputStream zin ...
- 2008-11-17 15:55
- 浏览 1294
- 评论(0)
/**
* 压缩字符串为 String
* 保存为字符串
*
* @param subObj压缩前的文本
* @return String
*/
public static final String compress(Object subObj) {
if(subObj == null)
return null;
byte[] compressed;
ByteArrayOutputStream out = null;
ZipOutputStream zout = null;
try ...
- 2008-11-17 15:55
- 浏览 1445
- 评论(0)
/**
* Clone Object
* @param obj
* @return
* @throws Exception
*/
private static Object cloneObject(Object obj) throws Exception{
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream(byteOu ...