📜  Java ZipEntry setCompressedSize()函数及示例

📅  最后修改于: 2022-05-13 01:55:27.300000             🧑  作者: Mango

Java ZipEntry setCompressedSize()函数及示例


setCompressedSize()函数是Java.util.zip 包的一部分。该函数将 Zip 条目的压缩大小设置为指定的 long 值。
函数签名:

public void setCompressedSize(long val)

句法 :

zip_entry.setCompressedSize(val);

参数:该函数采用长值作为参数。
返回值:该函数不返回任何值。
异常:该函数不会抛出任何异常。

下面的程序说明了 setCompressedSize()函数的使用

示例 1:我们将创建一个名为 zip_file 的文件,并使用 getEntry()函数获取 zip 文件条目,然后设置指定 ZipEntry 的压缩大小。“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: Java/util/zip/ZipEntry.html#setCompressedSize-long-