Java Writer append()方法

java.io.Writer.append(CharSequence csq,int start,int end) 将指定字符序列的子序列附加到此Writer。

1 语法

public Writer 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.Writer.append(CharSequence csq,int start,int end)方法的例子
 */
import java.io.*;

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

        // create a new writer
        Writer writer = new PrintWriter(System.out);

        try {
            // append a subsequence and change line
            writer.append("This is an example\n", 11, 19);

            // flush the writer
            writer.flush();

            // append a new subsequence
            writer.append(csq, 0, 5);

            // flush the writer to see the result
            writer.flush();

        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

输出结果为:

example
Hello

热门文章

优秀文章