El método clearError() de PrintWriter Class en Java se usa para borrar el estado de error de esta instancia de PrintWriter. Borra cualquier error que pueda haber ocurrido o no en la transmisión. Por lo tanto, el método checkError() siempre devolverá falso después de este método.
Sintaxis:
protected void clearError()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método no devuelve ningún valor.
Los siguientes métodos ilustran el funcionamiento del método clearError():
Programa 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); } } }
Producción:
GeeksForGeeks Has any error occurred: false
Programa 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); } } }
Producción:
A Has any error occurred: false
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA