El método checkError() de PrintWriter Class en Java se usa para verificar el estado de error de esta instancia de PrintWriter. Este método vacía la secuencia para verificar el estado del error. Devuelve un valor booleano que indica si la secuencia ha encontrado algún error o no.
Sintaxis:
public boolean checkError()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve un valor booleano que indica si la transmisión ha encontrado algún error o no. Devuelve verdadero si se ha encontrado algún error. De lo contrario, devuelve falso.
Los siguientes métodos ilustran el funcionamiento del método checkError():
Programa 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); } } }
GeeksForGeeks Has any error occurred: false
Programa 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); } } }
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