Saturday, December 6, 2025
HomeLanguagesJavaZipFile getName() function in Java with examples

ZipFile getName() function in Java with examples

The getName()function is a part of java.util.zip package. The function returns the path name of the ZipFile object.

Function Signature:

public String getName()

Syntax:

zip_file.getName();

Parameters: The function does not require any parameters
Return value: The function returns a string, which is the path name of the zip file
Exceptions: The function does not throw any exceptions.

Below programs illustrates the use of getName() function

Example 1: Create a file named zip_file and get the name using getName() function. “file.zip” is a zip file present in f: directory.




// Java program to demonstrate the
// use of getName() function
  
import java.util.zip.*;
  
public class solution {
    public static void main(String args[])
    {
        try {
            // Create a Zip File
            ZipFile zip_file
                = new ZipFile("f:\\file.zip");
  
            // Display the name of the zip file
            // using getName() function
            System.out.println(zip_file.getName());
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}


Output:

f:\file.zip

Example 2: Create a file named zip_file and get the name using getName() function. “file1.zip” is a non-existent zip file in f: directory.




// Java program to demonstrate the
// use of getName() function
  
import java.util.zip.*;
  
public class solution {
    public static void main(String args[])
    {
  
        try {
  
            // Create a Zip File
            ZipFile zip_file
                = new ZipFile("f:\\file1.zip");
  
            // Display the name of the zip file
            // using getName() function
            System.out.println(zip_file.getName());
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}


Output:

f:\file1.zip (The system cannot find the file specified)

Reference: https://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#getName()

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32427 POSTS0 COMMENTS
Milvus
103 POSTS0 COMMENTS
Nango Kala
6803 POSTS0 COMMENTS
Nicole Veronica
11944 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12014 POSTS0 COMMENTS
Shaida Kate Naidoo
6934 POSTS0 COMMENTS
Ted Musemwa
7188 POSTS0 COMMENTS
Thapelo Manthata
6882 POSTS0 COMMENTS
Umr Jansen
6867 POSTS0 COMMENTS