Last Updated : 29 Jan, 2019
The
append(char)method of
WriterClass 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
charValuewhich 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
// 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);
}
}
}
Program 2: Java
// 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);
}
}
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4