- java.util.zip 包類
- java.util.zip - 主頁
- java.util.zip - Adler32
- java.util.zip - CheckedInputStream
- java.util.zip - CheckedOutputStream
- java.util.zip - CRC32
- java.util.zip - Deflater
- java.util.zip - DeflaterInputStream
- java.util.zip - DeflaterOutputStream
- java.util.zip - GZIPInputStream
- java.util.zip - GZIPOutputStream
- java.util.zip - Inflater
- java.util.zip - InflaterInputStream
- java.util.zip - InflaterOutputStream
- java.util.zip - ZipEntry
- java.util.zip - ZipFile
- java.util.zip - ZipInputStream
- java.util.zip - ZipOutputStream
- java.util.zip 包 Extras
- java.util.zip - 異常
- java.util.zip - 錯誤
- java.util.zip 實用資源
- java.util.zip - 快速指南
- java.util.zip - 實用資源
- java.util.zip - 討論
java.util.zip.GZIPOutputStream.finish() 方法示例
說明
java.util.zip.GZIPOutputStream.finish() 方法完成向輸出流寫入壓縮資料,而無需關閉基礎流。在依次對同一輸出流應用多個過濾器時,請使用此方法。
宣告
以下為 java.util.zip.GZIPOutputStream.finish() 方法的宣告。
public void finish() throws IOException
void finish() throws IOException
異常
IOException - 如果發生了 I/O 錯誤。
示例
package com.tutorialspoint;
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.GZIPInputStream;
import java.util.zip.GZIPOutputStream;
public class GZIPOutputStreamDemo {
public static void main(String[] args) throws DataFormatException, IOException {
String message = "Welcome to TutorialsPoint.com;"
+"Welcome to TutorialsPoint.com;"
+"Welcome to TutorialsPoint.com;"
+"Welcome to TutorialsPoint.com;"
+"Welcome to TutorialsPoint.com;"
+"Welcome to TutorialsPoint.com;"
+"Welcome to TutorialsPoint.com;"
+"Welcome to TutorialsPoint.com;"
+"Welcome to TutorialsPoint.com;"
+"Welcome to TutorialsPoint.com;";
System.out.println("Original Message length : " + message.length());
byte[] input = message.getBytes("UTF-8");
// Compress the bytes
ByteArrayOutputStream arrayOutputStream = new ByteArrayOutputStream();
GZIPOutputStream outputStream = new GZIPOutputStream(arrayOutputStream);
outputStream.write(input);
outputStream.finish();
outputStream.close();
//Read and decompress the data
byte[] readBuffer = new byte[5000];
ByteArrayInputStream arrayInputStream =
new ByteArrayInputStream(arrayOutputStream.toByteArray());
GZIPInputStream inputStream = new GZIPInputStream(arrayInputStream);
int read = inputStream.read(readBuffer,0,readBuffer.length);
inputStream.close();
//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());
}
}
以下示例展示了 java.util.zip.GZIPOutputStream.finish() 方法的使用。
Original Message length : 300 UnCompressed Message length : 300
```java
javazip_gzipoutputstream.htm
列印頁面