PrintWriter.append(CharSequence csq) has the following syntax.
public PrintWriter append(CharSequence csq)
In the following code shows how to use PrintWriter.append(CharSequence csq) method.
/* w w w. jav a 2 s . co m*/ import java.io.*; public class Main { public static void main(String[] args) { CharSequence sq1 = "Hello"; CharSequence sq2 = " World"; PrintWriter pw = new PrintWriter(System.out); // append the sequence pw.append(sq1); pw.append(sq2); // flush the writer pw.flush(); } }
The code above generates the following result.