java inflate deflate_Java中的可迭代gzip deflate / inflate

马克·阿德勒(Mark Adler)建议采用这种方法非常有用,这比我原来的答案要好得多.

package stack;

import java.io.*;

import java.nio.ByteBuffer;

import java.nio.channels.FileChannel;

import java.util.zip.CRC32;

import java.util.zip.Deflater;

public class BufferDeflate2 {

/** The standard 10 byte GZIP header */

private static final byte[] GZIP_HEADER = new byte[] { 0x1f, (byte) 0x8b,

Deflater.DEFLATED, 0, 0, 0, 0, 0, 0, 0 };

/** CRC-32 of uncompressed data. */

private final CRC32 crc = new CRC32();

/** Deflater to deflate data */

private final Deflater deflater = new Deflater(Deflater.BEST_COMPRESSION,

true);

/** Output buffer building area */

private final ByteArrayOutputStream buffer = new ByteArrayOutputStream();

/** Internal transfer space */

private final byte[] transfer = new byte[1000];

/** The flush mode to use at the end of each buffer */

private final int flushMode;

/**

* New buffer deflater

*

* @param syncFlush

* if true, all data in buffer can be immediately decompressed

* from output buffer

*/

public BufferDeflate2(boolean syncFlush) {

flushMode = syncFlush ? Deflater.SYNC_FLUSH : Deflater.NO_FLUSH;

buffer.write(GZIP_HEADER, 0, GZIP_HEADER.length);

}

/**

* Deflate the buffer

*

* @param in

* the buffer to deflate

* @return deflated representation of the buffer

*/

public ByteBuffer deflate(ByteBuffer in) {

// convert buffer to bytes

byte[] inBytes;

int off = in.position();

int len = in.remaining();

if( in.hasArray() ) {

inBytes = in.array();

} else {

off = 0;

inBytes = new byte[len];

in.get(inBytes);

}

// update CRC and deflater

crc.update(inBytes, off, len);

deflater.setInput(inBytes, off, len);

while( !deflater.needsInput() ) {

int r = deflater.deflate(transfer, 0, transfer.length, flushMode);

buffer.write(transfer, 0, r);

}

byte[] outBytes = buffer.toByteArray();

buffer.reset();

return ByteBuffer.wrap(outBytes);

}

/**

* Write the final buffer. This writes any remaining compressed data and the GZIP trailer.

* @return the final buffer

*/

public ByteBuffer doFinal() {

// finish deflating

deflater.finish();

// write all remaining data

int r;

do {

r = deflater.deflate(transfer, 0, transfer.length,

Deflater.FULL_FLUSH);

buffer.write(transfer, 0, r);

} while( r == transfer.length );

// write GZIP trailer

writeInt((int) crc.getValue());

writeInt((int) deflater.getBytesRead());

// reset deflater

deflater.reset();

// final output

byte[] outBytes = buffer.toByteArray();

buffer.reset();

return ByteBuffer.wrap(outBytes);

}

/**

* Write a 32 bit value in little-endian order

*

* @param v

* the value to write

*/

private void writeInt(int v) {

System.out.println("v="+v);

buffer.write(v & 0xff);

buffer.write((v >> 8) & 0xff);

buffer.write((v >> 16) & 0xff);

buffer.write((v >> 24) & 0xff);

}

/**

* For testing. Pass in the name of a file to GZIP compress

* @param args

* @throws IOException

*/

public static void main(String[] args) throws IOException {

File inFile = new File(args[0]);

File outFile = new File(args[0]+".test.gz");

FileChannel inChan = (new FileInputStream(inFile)).getChannel();

FileChannel outChan = (new FileOutputStream(outFile)).getChannel();

BufferDeflate2 def = new BufferDeflate2(false);

ByteBuffer buf = ByteBuffer.allocate(500);

while( true ) {

buf.clear();

int r = inChan.read(buf);

if( r==-1 ) break;

buf.flip();

ByteBuffer compBuf = def.deflate(buf);

outChan.write(compBuf);

}

ByteBuffer compBuf = def.doFinal();

outChan.write(compBuf);

inChan.close();

outChan.close();

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值