java.util.zip中Deflater類的deflate()函數用於壓縮輸入數據,並使用壓縮後的數據填充給定的緩衝區。該函數返回壓縮數據的字節數。
函數簽名:
public int deflate(byte[] b) public int deflate(byte[] b, int offset, int length, int flush) public int deflate(byte[] b, int offset, int length)
用法:
d.deflate(byte[]) d.deflate(byte[], int, int, int) d.deflate(byte[], int, int )
參數:這些重載函數接受的各種參數是:
- byte[] b:這是要放氣的輸入數組
- int offset:這是要從給定數組中讀取值的起始偏移量
- int length:這是從起始偏移量開始壓縮的最大長度。
- int flush:這是作為參數傳遞的衝洗模式
返回類型:該函數返回一個整數值,該值是壓縮數據的大小。
異常:如果刷新模式無效,則該函數引發IllegalArgumentException。共有三種有效的刷新模式:NO_FLUSH,SYNC_FLUSH,FULL_FLUSH。
下麵的示例演示上述函數的用法:
範例1:演示deflate(byte [] b)函數的用法
// Java program to demonstrate
// the use of deflate(byte[] b) function
import java.util.zip.*;
import java.io.UnsupportedEncodingException;
class GFG {
public static void main(String args[])
throws UnsupportedEncodingException
{
// deflater
Deflater d = new Deflater();
// get the text
String pattern = "GeeksforGeeks", text = "";
// generate the text
for (int i = 0; i < 4; i++)
text += pattern;
// set the input for deflator
d.setInput(text.getBytes("UTF-8"));
// finish
d.finish();
// output bytes
byte output[] = new byte[1024];
// compress the data
int size = d.deflate(output);
// compressed String
System.out.println("Compressed String:"
+ new String(output)
+ "\n Size " + size);
// original String
System.out.println("Original String:"
+ text + "\n Size "
+ text.length());
// end
d.end();
}
}
輸出:
Compressed String:x?sOM?.N?/r???q?? Size 21 Original String:GeeksforGeeksGeeksforGeeksGeeksforGeeksGeeksforGeeks Size 52
範例2:演示deflate(byte [] b,int offset,int length)函數的用法
// Java program to demonstrate the use
// of deflate(byte[] b, int offset, int length) function
import java.util.zip.*;
import java.io.UnsupportedEncodingException;
class GFG {
public static void main(String args[])
throws UnsupportedEncodingException
{
// deflater
Deflater d = new Deflater();
// get the text
String pattern = "GeeksforGeeks", text = "";
// generate the text
for (int i = 0; i < 4; i++)
text += pattern;
// set the input for deflator
d.setInput(text.getBytes("UTF-8"));
// finish
d.finish();
// output bytes
byte output[] = new byte[1024];
// compress the data, with given offset and
// set maximum size of compressed string
int size = d.deflate(output, 2, 13);
// compressed String
System.out.println("Compressed String:"
+ new String(output)
+ "\n Size " + size);
// original String
System.out.println("Original String:"
+ text + "\n Size "
+ text.length());
// end
d.end();
}
}
輸出:
Compressed String:x?sOM?.N?/r? Size 13 Original String:GeeksforGeeksGeeksforGeeksGeeksforGeeksGeeksforGeeks Size 52
範例3:演示deflate(byte [] b,int offset,int length,int flush)函數的用法
// Java program to demonstrate the use of
// deflate(byte[] b, int offset, int length, int flush) function
import java.util.zip.*;
import java.io.UnsupportedEncodingException;
class GFG {
public static void main(String args[])
throws UnsupportedEncodingException
{
// deflater
Deflater d = new Deflater();
// get the text
String pattern = "GeeksforGeeks", text = "";
// generate the text
for (int i = 0; i < 4; i++)
text += pattern;
// set the input for deflator
d.setInput(text.getBytes("UTF-8"));
// finish
d.finish();
// output bytes
byte output[] = new byte[1024];
// compress the data, with given offset and
// set maximum size of compressed string
// and specified Flush
int size = d.deflate(output, 2, 13, Deflater.FULL_FLUSH);
// compressed String
System.out.println("Compressed String:"
+ new String(output)
+ "\n Size " + size);
// original String
System.out.println("Original String:" + text
+ "\n Size " + text.length());
// end
d.end();
}
}
輸出:
Compressed String:x?sOM?.N?/r? Size 13 Original String:GeeksforGeeksGeeksforGeeksGeeksforGeeksGeeksforGeeks Size 52
參考:
- https://docs.oracle.com/javase/9/docs/api/java/util/zip/Deflater.html#deflate-byte:A-
- https://docs.oracle.com/javase/9/docs/api/java/util/zip/Deflater.html#deflate-byte:A-int-int-
- https://docs.oracle.com/javase/9/docs/api/java/util/zip/Deflater.html#deflate-byte:A-int-int-int-
相關用法
- Java Deflater getBytesRead()用法及代碼示例
- Java Deflater getAdler()用法及代碼示例
- Java Deflater getTotalOut()用法及代碼示例
- Java Deflater getBytesWritten()用法及代碼示例
- Java Deflater setInput()用法及代碼示例
- Java Deflater getTotalIn()用法及代碼示例
- Java Deflater needsInput()用法及代碼示例
- Java Deflater setLevel()用法及代碼示例
- Java Deflater finished()用法及代碼示例
- Java Java.util.function.DoublePredicate用法及代碼示例
- Java Java.util.function.BiPredicate用法及代碼示例
- Java Java.util.function.IntPredicate用法及代碼示例
- Java Java.util.function.LongPredicate用法及代碼示例
- Java SQL Timestamp before()用法及代碼示例
- Java SQL Timestamp after()用法及代碼示例
注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 Deflater deflate() function in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。