Writer append(char c) void write(String str, int off, int len) Writer append(CharSequence csq) 描述 所述java.io.Writer.append(char c)中的方法将指定字符到此writer。 声明 以下是java.io.Writer.append()方法的声明。 public Writer append(char c) 参数 c - 要追加的16位字符。 返回值 此方法返回此writer。 异常 IOException - 如果发生I / O错误。 实例 以下示例显示了java.io.Writer.append()方法的用法。 package com.tutorialspoint; import java.io.*; public class WriterDemo { public static void main(String[] args) { char c = 'A'; // create a new writer Writer writer = new PrintWriter(System.out); try { // append a char writer.append('c'); // append a new char writer.append(c); // flush the writer to see the result writer.flush(); } catch (IOException ex) { ex.printStackTrace(); } } } 让我们编译并运行上面的程序,这将产生以下结果 - cA void write(String str, int off, int len) Writer append(CharSequence csq)