位置:首頁 > Java技術 > Java.io包 > Java.io.PrintWriter.append(CharSequence csq)方法實例

Java.io.PrintWriter.append(CharSequence csq)方法實例

java.io.PrintWriter.append()方法將指定的字符序列到這個writer。

聲明

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

public PrintWriter append(CharSequence csq)

參數

  • csq -- 字符序列追加。如果csq為null,則這四個字符“null”被附加到這個writer。

返回值

此方法返回這個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);
      pw.append(sq2);

      // flush the writer
      pw.flush();

   }
}

Let us compile and run the above program, this will produce the following result::

Hello World