Java.io.PrintStream.append() 方法



描述

java.io.PrintStream.append() 方法将指定字符序列的子序列追加到此输出流。

声明

以下是java.io.PrintStream.append() 方法的声明。

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

参数

  • csq − 要追加的字符序列。如果 csq 为 null,则将四个字符“null”追加到此输出流。

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

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

返回值

此方法返回此输出流。

异常

IndexOutOfBoundsException − 如果 start 或 end 为负数,start 大于 end,或 end 大于 csq.length()。

示例

以下示例演示了java.io.PrintStream.append() 方法的用法。

package com.tutorialspoint;

import java.io.*;

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

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

      // append our character sequences
      ps.append(csq, 6, 11);
      ps.append(csq, 0, 5);

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

让我们编译并运行上述程序,这将产生以下结果:

WorldHello
java_io_printstream.htm
广告