Java PrintWriter append()方法

java.io.PrintWriter.append(CharSequence csq,int start,int end) 方法将指定的字符序列的子序列写入此Writer。

1 语法

public PrintWriter append(CharSequence csq,int start,int end)

2 参数

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

start:子序列中第一个字符的索引。

end:子序列中最后一个字符之后的字符的索引。

3 返回值

返回Writer。

4 示例 

package com.yiidian;

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

/**
 * java.io.PrintWriter.append(CharSequence csq,int start,int end)方法的例子
 */
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, 1, 3);
        pw.append(sq2, 1, 4);

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

输出结果为:

elWor

热门文章

优秀文章