The getSize() function is a part of java.util.zip package. The function returns the uncompressed Size of a specific ZipEntry passed as parameter or -1 if not known.
Function Signature :
public long getSize()
Syntax :
zip_entry.getSize();
Parameters :No parameter is required for this function.
Return value :The function returns a long value, the uncompressed Size of this ZipEntry.
Exceptions :The function does not throw any exception.
Below programs illustrates the use of getSize() function
Example 1: We will create a file named zip_file and get the zip file entry using getEntry() function and then get the uncompressed Size of the specified ZipEntry.”file.zip” is a zip file present in f: directory. we will take a “.zip” file as ZipEntry
import java.util.zip.*;
import java.util.Enumeration;
import java.util.*;
import java.io.*;
public class solution {
public static void main(String args[])
{
try {
ZipFile zip_file = new ZipFile( "f:\\file1.zip" );
ZipEntry entry = zip_file.getEntry( "file.zip" );
long input = entry.getSize();
System.out.println( "uncompressed Size : " + input);
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
|
Output:
uncompressed Size : 2153
Example 2: We will create a file named zip_file and get the zip file entry using getEntry() function and then get the uncompressed Size of the specified ZipEntry.”file.zip” is a zip file present in f: directory. we will take a “.cpp” file as ZipEntry
import java.util.zip.*;
import java.util.Enumeration;
import java.util.*;
import java.io.*;
public class solution {
public static void main(String args[])
{
try {
ZipFile zip_file = new ZipFile( "f:\\file1.zip" );
ZipEntry entry = zip_file.getEntry( "file1.cpp" );
long input = entry.getSize();
System.out.println( "uncompressed Size : " + input);
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
|
Output:
uncompressed Size : 783
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.html#getSize–
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
06 Mar, 2019
Like Article
Save Article