java.util.zip.DeflaterOutputStream write()方法
java.util.zip.DeflaterOutputStream write(byte[] b, int off, int len)方法 介绍
java.util.zip.DeflaterOutputStream.write(byte[] b, int off, int len) 方法写入字节压缩的输出流的阵列。此方法将阻塞,直到写入所有字节。
java.util.zip.DeflaterOutputStream write(byte[] b, int off, int len)方法 声明
public void write(byte[] b, int off, int len)
throws IOException
java.util.zip.DeflaterOutputStream write(byte[] b, int off, int len)方法 参数
-
b : 要写入的数据。
-
off : 数据的起始偏移量。
-
len : 数据的长度。
java.util.zip.DeflaterOutputStream write(byte[] b, int off, int len)方法 返回值
- 无
java.util.zip.DeflaterOutputStream write(byte[] b, int off, int len)方法 示例
下面的例子展示了 java.util.zip.DeflaterOutputStream.write(byte[] b, int off, int len) 方法的用法。
package com.yiidian;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Arrays;
import java.util.zip.DataFormatException;
import java.util.zip.DeflaterOutputStream;
import java.util.zip.InflaterInputStream;
public class DeflaterOutputStreamDemo {
public static void main(String[] args) throws DataFormatException, IOException {
String message = "Welcome to Yiidian.com;"
+"Welcome to Yiidian.com;"
+"Welcome to Yiidian.com;"
+"Welcome to Yiidian.com;"
+"Welcome to Yiidian.com;"
+"Welcome to Yiidian.com;"
+"Welcome to Yiidian.com;"
+"Welcome to Yiidian.com;"
+"Welcome to Yiidian.com;"
+"Welcome to Yiidian.com;";
String dictionary = "Welcome";
System.out.println("Original Message length : " + message.length());
byte[] input = message.getBytes("UTF-8");
// Compress the bytes
ByteArrayOutputStream arrayOutputStream = new ByteArrayOutputStream();
DeflaterOutputStream outputStream = new DeflaterOutputStream(arrayOutputStream);
outputStream.write(input, 0, input.length);
outputStream.close();
//Read and decompress the data
byte[] readBuffer = new byte[5000];
ByteArrayInputStream arrayInputStream =
new ByteArrayInputStream(arrayOutputStream.toByteArray());
InflaterInputStream inputStream = new InflaterInputStream(arrayInputStream);
int read = inputStream.read(readBuffer);
//Should hold the original (reconstructed) data
byte[] result = Arrays.copyOf(readBuffer, read);
// Decode the bytes into a String
message = new String(result, "UTF-8");
System.out.println("UnCompressed Message length : " + message.length());
}
}
输出结果为:
热门文章
优秀文章