java.util.zip.Deflater 壓縮 inflater解壓 執行個體

來源:互聯網
上載者:User

標籤:

原文:java壓縮解壓縮類執行個體[轉]

 

package com.example.helloworld;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 Utils {    /**     * 壓縮     *     * @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 = "[email protected];[email protected];[email protected]";        System.err.println("輸入字串:\t" + inputStr);        byte[] input = inputStr.getBytes();        System.err.println("輸入位元組長度:\t" + input.length);        byte[] data = Utils.compress(input);        System.err.println("壓縮後位元組長度:\t" + data.length);        byte[] output = Utils.decompress(data);        System.err.println("解壓縮後位元組長度:\t" + output.length);        String outputStr = new String(output);        System.err.println("輸出字串:\t" + outputStr);    }}

 

java.util.zip.Deflater 壓縮 inflater解壓 執行個體

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.