El método println(String) de PrintWriter Class en Java se usa para imprimir la string especificada en la transmisión y luego dividir la línea. Este String se toma como parámetro.
Sintaxis:
public void println(String string)
Parámetros: este método acepta una string de parámetros obligatoria que es la string que se imprimirá en el flujo.
Valor devuelto: este método no devuelve ningún valor.
Los siguientes métodos ilustran el funcionamiento del método println(String):
Programa 1:
// Java program to demonstrate // PrintWriter println(String) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintWriter instance PrintWriter writer = new PrintWriter(System.out); // Get the String // to be printed in the stream String string = "GeeksForGeeks"; // print the string // to this writer using print() method // This will put the string in the stream // till it is printed on the console writer.println(string); writer.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GeeksForGeeks
Programa 2:
// Java program to demonstrate // PrintWriter println(String) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintWriter instance PrintWriter writer = new PrintWriter(System.out); // Get the String // to be printed in the stream String string = "GFG"; // print the string // to this writer using print() method // This will put the string in the stream // till it is printed on the console writer.println(string); writer.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GFG
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