Java PrintStream append()方法

java.io.PrintStream.append(CharSequence csq) 方法将指定字符序列到输出流。

1 语法

public PrintStream append(CharSequence csq)

2 参数

csq:要写入的字符序列。如果csq为null,则将四个字符“null”写入到此输出流。

3 返回值

此方法返回此输出流。

4 示例 

package com.yiidian;

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

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

public class Demo {
    public static void main(String[] args) {
        String s = "Hello World. ";

        // create printstream object
        PrintStream ps = new PrintStream(System.out);

        // append our strings
        ps.append(s);
        ps.append("This is an example.");

        // print the result
        ps.flush();
        ps.close();
    }
}

输出结果为:

Hello World. This is an example.

热门文章

优秀文章