El método append(CharSequence) de Writer Class en Java se usa para escribir la CharSequence especificada en el escritor. Este valor de CharSequence se toma como parámetro.
Sintaxis:
public Writer append(CharSequence charSequence)
Parámetros: este método acepta un parámetro obligatorio charSequence que es la CharSequence que se escribirá en el escritor.
Valor devuelto: este método devuelve esta instancia de Writer.
Los siguientes métodos ilustran el funcionamiento del método append(CharSequence):
Programa 1:
// Java program to demonstrate // Writer append(CharSequence) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a Writer instance Writer writer = new PrintWriter(System.out); // Write the CharSequence 'GeeksForGeeks' // to this writer using append() method // This will put the charSequence in the writer // till it is printed on the console writer.append("GeeksForGeeks"); writer.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GeeksForGeeks
Programa 2:
// Java program to demonstrate // Writer append(CharSequence) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a Writer instance Writer writer = new PrintWriter(System.out); // Write the CharSequence 'GFG' // to this writer using append() method // This will put the charSequence in the writer // till it is printed on the console writer.append("GFG"); writer.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GFG