`
8040
  • 浏览: 27831 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

字符串解压

    博客分类:
  • java
/** * 将压缩后的 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 ...

字符串压缩

    博客分类:
  • java
/** * 压缩字符串为 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 ...
/** * Clone Object * @param obj * @return * @throws Exception */ private static Object cloneObject(Object obj) throws Exception{ ByteArrayOutputStream byteOut = new ByteArrayOutputStream(); ObjectOutputStream out = new ObjectOutputStream(byteOu ...
Global site tag (gtag.js) - Google Analytics