當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java ZipEntry setCompressedSize()用法及代碼示例



setCompressedSize()函數是java.util.zip軟件包的一部分。該函數將壓縮條目的壓縮大小設置為指定的long值。函數簽名:

public void setCompressedSize(long val)

用法:

zip_entry.setCompressedSize(val);

參數:該函數將long值作為參數。
返回值:該函數不返回任何值。
Exceptions:該函數不會引發任何異常。


以下示例程序旨在說明setCompressedSize()函數的使用

範例1:我們將創建一個名為zip_file的文件,並使用getEntry()函數獲取zip文件條目,然後設置指定ZipEntry的Compressed Size。“ file.zip”是f:目錄中的一個zip文件。我們將以“.zip”文件作為ZipEntry

// Java program to demonstrate the 
// use of setCompressedSize() function 
  
import java.util.zip.*; 
import java.util.Enumeration; 
import java.util.*; 
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
        try { 
            // Create a Zip File 
            ZipFile zip_file = new ZipFile("f:\\file1.zip"); 
  
            // get the Zip Entry using 
            // the getEntry() function 
            ZipEntry entry = zip_file.getEntry("file.zip"); 
  
            // set the CompressedSize 
            // using the getCompressedSize() 
            // function 
            entry.setCompressedSize(123); 
  
            // Get the CompressedSize 
            // using the getCompressedSize() 
            // function 
            long input = entry.getCompressedSize(); 
  
            // Display the CompressedSize 
            System.out.println("CompressedSize:" + input); 
        } 
        catch (Exception e) { 
            System.out.println(e.getMessage()); 
        } 
    } 
}
輸出:
CompressedSize:123

範例2:我們將創建一個名為zip_file的文件,並使用getEntry()函數獲取zip文件條目,然後設置指定ZipEntry的CompressedSize。“ file.zip”是f:目錄中的一個zip文件。我們將以“.cpp”文件作為ZipEntry

// Java program to demonstrate the 
// use of setCompressedSize() function 
  
import java.util.zip.*; 
import java.util.Enumeration; 
import java.util.*; 
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
        try { 
            // Create a Zip File 
            ZipFile zip_file = new ZipFile("f:\\file1.zip"); 
  
            // get the Zip Entry using 
            // the getEntry() function 
            ZipEntry entry = zip_file.getEntry("file1.cpp"); 
  
            // set the CompressedSize 
            // using the getCompressedSize() 
            // function 
            entry.setCompressedSize(123); 
  
            // Get the CompressedSize 
            // using the getCompressedSize() 
            // function 
            long input = entry.getCompressedSize(); 
  
            // Display the CompressedSize 
            System.out.println("CompressedSize:" + input); 
        } 
        catch (Exception e) { 
            System.out.println(e.getMessage()); 
        } 
    } 
}
輸出:
CompressedSize:123

參考: https://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.html#setCompressedSize-long-



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 Java ZipEntry setCompressedSize() function with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。