El método write(String) de la clase StringWriter en Java se usa para escribir la string especificada en la transmisión. Este valor de String se toma como parámetro.
Sintaxis:
public void write(String string)
Parámetros: este método acepta una string de parámetros obligatoria que es la string que se escribirá en el flujo.
Valor devuelto: este método no devuelve ningún valor.
Los siguientes programas ilustran el funcionamiento del método write(String):
Programa 1:
// Java program to demonstrate // StringWriter write(String) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a StringWriter instance StringWriter writer = new StringWriter(); // Write the String 'GeeksForGeeks' // to this writer using write() method // This will put the string in the stream // till it is printed on the console writer.write("GeeksForGeeks"); System.out.println(writer.toString()); } catch (Exception e) { System.out.println(e); } } }
Producción:
GeeksForGeeks
Programa 2:
// Java program to demonstrate // StringWriter write(String) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a StringWriter instance StringWriter writer = new StringWriter(); // Write the String 'GFG' // to this writer using write() method // This will put the string in the stream // till it is printed on the console writer.write("GFG"); System.out.println(writer.toString()); } catch (Exception e) { System.out.println(e); } } }
Producción:
GFG