El método write(char[]) de Writer Class en Java se usa para escribir la array de caracteres especificada en la transmisión. Esta array de caracteres se toma como parámetro.
Sintaxis:
public void write(char[] charArray)
Parámetros: este método acepta un parámetro obligatorio charArray que es la array de caracteres que se escribirá en el Stream.
Valor devuelto: este método no devuelve ningún valor.
Los siguientes métodos ilustran el funcionamiento del método write(char[]):
Programa 1:
// Java program to demonstrate // Writer write(char[]) 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 character array // to be written in the stream char[] charArray = { 'G', 'e', 'e', 'k', 's', 'F', 'o', 'r', 'G', 'e', 'e', 'k', 's' }; // Write the charArray // to this writer using write() method // This will put the charArray in the stream // till it is printed on the console writer.write(charArray); writer.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GeeksForGeeks
Programa 2:
// Java program to demonstrate // Writer write(char[]) 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 character array // to be written in the stream char[] charArray = { 'G', 'F', 'G' }; // Write the charArray // to this writer using write() method // This will put the charArray in the stream // till it is printed on the console writer.write(charArray); writer.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GFG