Tuesday, February 3, 2026
HomeLanguagesJavaScanner close() method in Java with Examples

Scanner close() method in Java with Examples

The close() method ofjava.util.Scanner class closes the scanner which has been opened. If the scanner is already closed then on calling this method, it will have no effect.

Syntax:

public void close()

Return Value: The function does not return any value.

Below programs illustrate the above function:

Program 1:




// Java program to illustrate the
// close() method of Scanner class in Java
  
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
  
        try {
  
            // Get the string
            String s = "Geeksforgeeks has Scanner Class Methods";
  
            // create a new scanner
            // with the specified String Object
            Scanner scanner = new Scanner(s);
  
            // print the next line of the string
            System.out.println("Scanner: "
                               + scanner.nextLine());
  
            // close the scanner
            scanner.close();
  
            System.out.println("\nScanner Closed.\n");
  
            System.out.println("Trying to use scanner"
                               + " after closing.");
  
            // print the next line of the string
            System.out.println(scanner.nextLine());
        }
  
        catch (Exception e) {
            System.out.println("Exception thrown:\n" + e);
        }
    }
}


Output:

Scanner: Geeksforgeeks has Scanner Class Methods

Scanner Closed.

Trying to use scanner after closing.
Exception thrown:
java.lang.IllegalStateException: Scanner closed

Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#close()

RELATED ARTICLES

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
124 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11979 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12066 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6935 POSTS0 COMMENTS
Umr Jansen
6919 POSTS0 COMMENTS