El método toString() de la clase StringWriter en Java se utiliza para obtener la representación de string de esta instancia de StringWriter. Este método no acepta ningún parámetro y devuelve el valor de string requerido.
Sintaxis:
public String toString()
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 StringWriter.
Los siguientes métodos ilustran el funcionamiento del método toString():
Programa 1:
// Java program to demonstrate // StringWriter toString() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a StringWriter instance StringWriter writer = new StringWriter(); // 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: GeeksForGeeks
Programa 2:
// Java program to demonstrate // StringWriter toString() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a StringWriter instance StringWriter writer = new StringWriter(); // 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: GFG