Java.io.PrintWriter.append() 方法

  • 描述

    Java.io.PrintWriter.append() 方法将指定字符序列到此writer。
  • 声明

    以下是protected void append()方法的声明。
     public PrintWriter append(CharSequence csq)
  • 参数

    csq要追加的字符序列。如果csq为null,则将四个字符“ null”附加到此编写器。
  • 返回值

    此方法返回此编写器。
  • 异常

    不适用
  • 例子

    以下示例显示java.io.PrintWriter.append()方法的用法。
     
    package com.jc2182;
    
    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);
          pw.append(sq2);
    
          // flush the writer
          pw.flush();
       }
    }
    
    让我们编译并运行以上程序,这将产生以下结果-
     
    Hello World