El método toString() de Writer Class en Java se usa para obtener la representación de String de esta instancia de Writer. Este método no acepta ningún parámetro y devuelve el valor de string requerido.
Sintaxis:
String pública a String()
Parámetros: Este método acepta no acepta ningún parámetro.
Valor de retorno: este método devuelve un valor de string que es la representación de string de la instancia de Writer.
Los siguientes métodos ilustran el funcionamiento del método toString():
Programa 1:
Java
// Java program to demonstrate // Writer toString() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a Writer instance Writer writer = new PrintWriter(System.out); // Get the String // to be written in the stream String string = "GeeksForGeeks"; // Write the string // to this writer using write() method writer.write(string); System.out.println("String representation: " + writer.toString()); } catch (Exception e) { System.out.println(e); } } }
Producción:
String representation: java.io.PrintWriter@232204a1
Programa 2:
Java
// Java program to demonstrate // Writer toString() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a Writer instance Writer writer = new PrintWriter(System.out); // Get the String // to be written in the stream String string = "GFG"; // Write the string // to this writer using write() method writer.write(string); System.out.println("String representation: " + writer.toString()); } catch (Exception e) { System.out.println(e); } } }
Producción:
String representation: java.io.PrintWriter@232204a1