位置:首页 > Java技术 > Java.io包 > java.io.PrintWriter.append(CharSequence csq,int start,int end)方法实例

java.io.PrintWriter.append(CharSequence csq,int start,int end)方法实例

java.io.PrintWriter.append() 方法将指定的字符序列的子序列写入此writer。

声明

以下是java.io.PrintWriter.append()方法声明

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

参数

  • csq -- 字符序列追加。如果csq为null,则这四个字符“null”被附加到这个writer。

  • start -- 在序列的第一个字符的索引

  • end -- 字符下面的子序列的最后一个字符的索引

返回值

此方法返回这个writer

异常

  • NA

例子

下面的示例演示java.io.PrintWriter.append()方法的用法。

package com.yiibai;

import java.io.*;

public class PrintWriterDemo {

   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