Saturday, October 18, 2025
HomeLanguagesJavaJava ZipEntry getMethod() function with examples

Java ZipEntry getMethod() function with examples

The getMethod() function is a part of java.util.zip package. The function returns the compression method of a specific ZipEntry passed as parameter or -1 if not specified.
Function Signature :

public int getMethod()

Syntax :

zip_entry.getMethod();

Parameters :No parameter is required for this function.
Return value :The function returns a int value, the compression method of this ZipEntry or -1 if not specified.
Exceptions :The function does not throw any exception.

Below programs illustrates the use of getMethod() function

Example 1: We will create a file named zip_file and get the zip file entry using getEntry() function and then get the compression method of the specified ZipEntry.”file.zip” is a zip file present in f: directory. we will take a “.zip” file as ZipEntry




// Java program to demonstrate the
// use of getMethod() 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");
  
            // Get the compression method
            // using the getMethod()
            // function
            int input = entry.getMethod();
  
            // Display the compression method
            System.out.println("compression method : " + input);
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}


Output:

compression method : 8

Example 2: We will create a file named zip_file and get the zip file entry using getEntry() function and then get the compression method of the specified ZipEntry.”file.zip” is a zip file present in f: directory. we will take a “.cpp” file as ZipEntry




// Java program to demonstrate the
// use of getMethod() 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");
  
            // Get the compression method
            // using the getMethod()
            // function
            int input = entry.getMethod();
  
            // Display the compression method
            System.out.println("compression method : " + input);
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}


Output:

compression method : 8

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.html#getMethod–

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS