El método toCharArray() de la clase CharArrayWriter en Java devuelve una copia de los datos de entrada.
Sintaxis :
public char[] toCharArray()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve una copia de los datos de entrada.
El siguiente programa ilustra el método anterior:
Programa 1:
Java
// Java program to illustrate // the toCharArray() method import java.io.*; public class GFG { public static void main(String[] args) throws IOException { // Initializing String Writer CharArrayWriter geek_writer1 = new CharArrayWriter(); char[] Sw = { 'G', 'E', 'E', 'K', 'S' }; for (char c : Sw) { // Use of append(char Sw) : geek_writer1.append(c); } // Use of toCharArray() : char[] toChar1 = geek_writer1.toCharArray(); for (char c1 : toChar1) { System.out.println("toCharArray : " + c1); } } }
Producción:
toCharArray : G toCharArray : E toCharArray : E toCharArray : K toCharArray : S
Programa 2:
Java
// Java program to illustrate // the toCharArray() method import java.io.*; public class GFG { public static void main(String[] args) throws IOException { // Initializing String Writer CharArrayWriter geek_writer1 = new CharArrayWriter(); char[] Sw = { 'G', 'O', 'P', 'A', 'L', 'D', 'A', 'V', 'E' }; for (char c : Sw) { // Use of append(char Sw) : geek_writer1.append(c); } // Use of toCharArray() : char[] toChar1 = geek_writer1.toCharArray(); for (char c1 : toChar1) { System.out.println("toCharArray : " + c1); } } }
Producción:
toCharArray : G toCharArray : O toCharArray : P toCharArray : A toCharArray : L toCharArray : D toCharArray : A toCharArray : V toCharArray : E
Referencia : https://docs.oracle.com/javase/10/docs/api/java/io/CharArrayWriter.html#toCharArray()