Método PrintWriter append (CharSequence) en Java con ejemplos

El método append(CharSequence) de PrintWriter Class en Java se usa para escribir la CharSequence especificada en la transmisión. Este valor de CharSequence se toma como parámetro.

Sintaxis:

public PrintWriter append(CharSequence charSequence)

Parámetros: este método acepta un parámetro obligatorio charSequence que es la CharSequence que se escribirá en el Stream.

Valor devuelto: este método devuelve esta instancia de PrintWriter.

Los siguientes métodos ilustran el funcionamiento del método append(CharSequence):

Programa 1:

// Java program to demonstrate
// PrintWriter append(CharSequence) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a PrintWriter instance
            PrintWriter writer
                = new PrintWriter(System.out);
  
            // Write the CharSequence 'GeeksForGeeks'
            // to this writer using append() method
            // This will put the charSequence in the stream
            // 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
// PrintWriter append(CharSequence) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a PrintWriter instance
            PrintWriter writer
                = new PrintWriter(System.out);
  
            // Write the CharSequence 'GFG'
            // to this writer using append() method
            // This will put the charSequence in the stream
            // till it is printed on the console
            writer.append("GFG");
  
            writer.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Producción:

GFG

Publicación traducida automáticamente

Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *