Java.io.CharArrayWriter.writeTo() 方法



描述

java.io.BufferedInputStream.writeTo(Writer out) 方法將緩衝區內容寫入另一個流。

宣告

以下是java.io.CharArrayWriter.writeTo(Writer out) 方法的宣告:

public void writeTo(Writer out)

引數

out - 目標輸出流

返回值

此方法不返回值。

異常

IOException - 如果發生任何 IO 錯誤。

示例

以下示例演示了 java.io.CharArrayWriter.writeTo(Writer out) 方法的用法。

package com.tutorialspoint;

import java.io.CharArrayWriter;

public class CharArrayWriterDemo {
   public static void main(String[] args) {      
      String str = "Hello World!!";
      CharArrayWriter chw = null;
      CharArrayWriter chwd = null;   
      
      try {
         // create character array writer
         chw = new CharArrayWriter();

         // create destination character array writer
         chwd = new CharArrayWriter();
         
         // string to be written to writer
         chw.write(str);
         
         // write to destination array writer
         chw.writeTo(chwd);
         
         // print the destination buffer content as string
         System.out.println(chwd.toString());
               
      } catch(Exception e) {
         // for any error
         e.printStackTrace();
      } finally {
         // releases all system resources from writer
         if(chw!=null)
            chw.close();
      }
   }
}

讓我們編譯並執行以上程式,這將產生以下結果:

Hello World!!
java_io_chararraywriter.htm
廣告