Método PrintStream checkError() en Java con ejemplos

El método checkError() de PrintStream Class en Java se usa para verificar el estado de error de esta instancia de PrintStream. 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 secuencia 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
// PrintStream checkError() method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        // The string to be written in the Stream
        String str = "GeeksForGeeks";
  
        try {
  
            // Create a PrintStream instance
            PrintStream stream
                = new PrintStream(System.out);
  
            // Write the above string to this stream
            // This will put the string in the stream
            // till it is printed on the console
            stream.print(str);
  
            // Now check the stream
            // using checkError() method
            System.out.println("\nHas any error occurred: "
                               + stream.checkError());
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Producción:

GeeksForGeeks
Has any error occurred: false

Programa 2:

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *