Sunday, February 15, 2026
HomeLanguagesJavaWriter append(char) method in Java with Examples

Writer append(char) method in Java with Examples

The append(char) method of Writer Class in Java is used to append the specified char value on the writer. This char value is taken as a parameter.

Syntax:

public void append(char charValue)

Parameters: This method accepts a mandatory parameter charValue which is the char value to be appended on the writer.

Return Value: This method do not returns any value.

Below methods illustrates the working of append(char) method:

Program 1:




// Java program to demonstrate
// Writer append(char) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a Writer instance
            Writer writer
                = new PrintWriter(System.out);
  
            // Append the char value 'A'
            // to this writer using append() method
            // This will put the charValue in the
            // writer till it is appended on the console
            writer.append('A');
  
            writer.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

A

Program 2:




// Java program to demonstrate
// Writer append(char) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a Writer instance
            Writer writer
                = new PrintWriter(System.out);
  
            // Append the char value 'G'
            // to this writer using append() method
            // This will put the charValue in the
            // writer till it is appended on the console
            writer.append('G');
  
            writer.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

G
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6880 POSTS0 COMMENTS
Nicole Veronica
12004 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12098 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS