Java PrintWriter append()方法

java.io.PrintWriter.append(CharSequence csq) 方法将指定字符序列到此Writer。

1 语法

public PrintWriter append(CharSequence csq)

2 参数

csq:要追加的字符序列。如果csq为null,则将四个字符“null”附加到此Writer中。

3 返回值

返回Writer。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */

/**
 * java.io.PrintWriter.append(CharSequence csq)方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) {
        CharSequence sq1 = "Hello";
        CharSequence sq2 = " World";

        // create a new stream at system
        PrintWriter pw = new PrintWriter(System.out);

        // append the sequence
        pw.append(sq1);
        pw.append(sq2);

        // flush the writer
        pw.flush();
    }
}

输出结果为:

Hello World

热门文章

优秀文章