Java Writer append()方法

java.io.Writer.append(char c) 将指定的字符附加到此Writer。

1 语法

public Writer append(char c)

2 参数

c:要追加的16位字符。

3 返回值

返回Writer。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.Writer.append(char c)方法的例子
 */
import java.io.*;

public class Demo {
    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

热门文章

优秀文章