Open In App

PrintWriter checkError() method in Java with Examples

Last Updated : 31 Jan, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The checkError() method of PrintWriter Class in Java is used to check the error state of this PrintWriter instance. This method flushes the stream in order to check the error state. It returns a boolean value that tells if the stream has encountered any error or not.

Syntax:

public boolean checkError()

Parameters: This method do not accepts any parameter.

Return Value: This method returns a boolean value stating whether the Stream has encountered any error or not. It returns true if any error has been encountered. Else it returns false.

Below methods illustrates the working of checkError() method:

Program 1:




// Java program to demonstrate
// PrintWriter checkError() method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        // The string to be written in the Writer
        String str = "GeeksForGeeks";
  
        try {
  
            // Create a PrintWriter instance
            PrintWriter writer
                = new PrintWriter(System.out);
  
            // Write the above string to this writer
            // This will put the string in the stream
            // till it is printed on the console
            writer.write(str);
  
            // Now check the stream
            // using checkError() method
            System.out.println("\nHas any error occurred: "
                               + writer.checkError());
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

GeeksForGeeks
Has any error occurred: false

Program 2:




// Java program to demonstrate
// PrintWriter checkError() method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a PrintWriter instance
            PrintWriter writer
                = new PrintWriter(System.out);
  
            // Write the char to this writer
            // This will put the char in the stream
            // till it is printed on the console
            writer.write(65);
  
            // Now check the stream
            // using checkError() method
            System.out.println("\nHas any error occurred: "
                               + writer.checkError());
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

A
Has any error occurred: false


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads