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

java.io.Writer.append(CharSequence csq)方法實例

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

聲明

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

public Writer append(CharSequence csq)

參數

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

返回值

此方法返回這個writer

異常

  • IOException -- 如果發生I/ O錯誤

例子

下麵的示例演示java.io.Writer.append()方法的用法。

package com.yiibai;
import java.io.*;
public class WriterDemo {

   public static void main(String[] args) {
      CharSequence csq = "Hello World!";
      // create a new writer
      Writer writer = new PrintWriter(System.out);
      try {
         // append a sequence and change line
         writer.append("This is an example
");

         // flush the writer
         writer.flush();
         // append a new sequence
         writer.append(csq);

         // flush the writer to see the result
         writer.flush();
      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

This is an example
Hello World!