日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 人文社科 > 生活经验 >内容正文

生活经验

java压缩解压缩类实例[转]

發布時間:2023/11/27 生活经验 58 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java压缩解压缩类实例[转] 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

package com.yangxiaozuo.util;


import java.io.ByteArrayOutputStream;??
import java.io.IOException;??
import java.util.zip.Deflater;??
import java.util.zip.Inflater;??

/**
* ZLib壓縮工具
*??
* @author 梁棟
* @version 1.0
* @since 1.0
*/
public abstract class ZLibUtils {??

??? /**
???? * 壓縮
???? *??
???? * @param data
???? *??????????? 待壓縮數據
???? * @return byte[] 壓縮后的數據
???? */
??? public static byte[] compress(byte[] data) {??
??????? byte[] output = new byte[0];??

??????? Deflater compresser = new Deflater();??

??????? compresser.reset();??
??????? compresser.setInput(data);??
??????? compresser.finish();??
??????? ByteArrayOutputStream bos = new ByteArrayOutputStream(data.length);??
??????? try {??
??????????? byte[] buf = new byte[1024];??
??????????? while (!compresser.finished()) {??
??????????????? int i = compresser.deflate(buf);??
??????????????? bos.write(buf, 0, i);??
??????????? }??
??????????? output = bos.toByteArray();??
??????? } catch (Exception e) {??
??????????? output = data;??
??????????? e.printStackTrace();??
??????? } finally {??
??????????? try {??
??????????????? bos.close();??
??????????? } catch (IOException e) {??
??????????????? e.printStackTrace();??
??????????? }??
??????? }??
??????? compresser.end();??
??????? return output;??
??? }??

??? /**
???? * 解壓縮
???? *??
???? * @param data
???? *??????????? 待壓縮的數據
???? * @return byte[] 解壓縮后的數據
???? */
??? public static byte[] decompress(byte[] data) {??
??????? byte[] output = new byte[0];??

??????? Inflater decompresser = new Inflater();??
??????? decompresser.reset();??
??????? decompresser.setInput(data);??

??????? ByteArrayOutputStream o = new ByteArrayOutputStream(data.length);??
??????? try {??
??????????? byte[] buf = new byte[1024];??
??????????? while (!decompresser.finished()) {??
??????????????? int i = decompresser.inflate(buf);??
??????????????? o.write(buf, 0, i);??
??????????? }??
??????????? output = o.toByteArray();??
??????? } catch (Exception e) {??
??????????? output = data;??
??????????? e.printStackTrace();??
??????? } finally {??
??????????? try {??
??????????????? o.close();??
??????????? } catch (IOException e) {??
??????????????? e.printStackTrace();??
??????????? }??
??????? }??

??????? decompresser.end();??
??????? return output;??
??? }??
???
???
??? public static void main(String[] args){
??? String inputStr = "snowolf@zlex.org;dongliang@zlex.org;zlex.dongliang@zl";??
???????? System.err.println("輸入字符串:\t" + inputStr);??
???????? byte[] input = inputStr.getBytes();??
???????? System.err.println("輸入字節長度:\t" + input.length);??
??
???????? byte[] data = ZLibUtils.compress(input);??
???????? System.err.println("壓縮后字節長度:\t" + data.length);??
??
???????? byte[] output = ZLibUtils.decompress(data);??
???????? System.err.println("解壓縮后字節長度:\t" + output.length);??
???????? String outputStr = new String(output);??
???????? System.err.println("輸出字符串:\t" + outputStr);??
??? }
}

轉載于:https://www.cnblogs.com/coolattt/archive/2010/01/06/1640614.html

總結

以上是生活随笔為你收集整理的java压缩解压缩类实例[转]的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。