El método close() de PrintWriter Class en Java se usa para cerrar la transmisión. Al cerrar una transmisión, se desasigna cualquier valor en ella o cualquier recurso asociado con ella. La instancia de PrintWriter una vez cerrada no funcionará. Además, una instancia de PrintWriter una vez cerrada no se puede volver a cerrar.
Sintaxis:
public void close()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método no devuelve ningún valor. Simplemente cierra el Stream.
Los siguientes métodos ilustran el funcionamiento del método close():
Programa 1:
// Java program to demonstrate // PrintWriter close() 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 close the stream // using close() method writer.close(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GeeksForGeeks
Programa 2:
// Java program to demonstrate // PrintWriter close() 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 close the stream // using close() method writer.close(); } catch (Exception e) { System.out.println(e); } } }
Producción:
A
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