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); } } } |
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); } } } |
G
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready. To complete your preparation from learning a language to DS Algo and many more, please refer Complete Interview Preparation Course.