Wednesday, July 3, 2024
HomeLanguagesJavaPrintWriter clearError() method in Java with Examples

PrintWriter clearError() method in Java with Examples

The clearError() method of PrintWriter Class in Java is used to clear the error state of this PrintWriter instance. It clears any error that might have or not happened in the stream. Hence the checkError() method will always return false after this method.

Syntax:

protected void clearError()

Parameters: This method do not accepts any parameter.

Return Value: This method do not returns any value.

Below methods illustrates the working of clearError() method:

Program 1:




// Java program to demonstrate
// PrintWriter clearError() method
  
import java.io.*;
  
class GFG extends PrintWriter {
  
    // Defining the protected constructor
    public GFG(OutputStream out)
    {
        super(System.out);
    }
  
    // Driver Code
    public static void main(String[] args)
    {
  
        // The string to be written in the Writer
        String str = "GeeksForGeeks";
  
        try {
  
            // Create a PrintWriter instance
            GFG writer
                = new GFG(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 clear the stream
            // using clearError() method
            writer.clearError();
  
            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 clearError() method
  
import java.io.*;
  
class GFG extends PrintWriter {
  
    // Defining the protected constructor
    public GFG(OutputStream out)
    {
        super(System.out);
    }
  
    // Driver Code
    public static void main(String[] args)
    {
  
        // The string to be written in the Writer
        String str = "GeeksForGeeks";
  
        try {
  
            // Create a PrintWriter instance
            GFG writer
                = new GFG(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 clear the stream
            // using clearError() method
            writer.clearError();
  
            System.out.println("\nHas any error occurred: "
                               + writer.checkError());
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

A
Has any error occurred: false

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments