當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.BufferedWriter.write()用法及代碼示例



描述

這個java.io.BufferedWriter.write(char[] cbuf, int off, int len) 方法將一段字符緩衝區寫入編寫器。開始讀取字符的偏移量,len 是字符緩衝區中部分的長度。

聲明

以下是聲明java.io.BufferedWriter.write(char[] cbuf, int off, int len)方法 -

public void write(char[] cbuf, int off, int len)

參數

  • cbuf− 要寫入的字符數組

  • off- 偏移開始讀取字符緩衝區

  • len- 要寫入流的字符數

返回值

此方法不返回任何值。

異常

IOException− 如果發生 I/O 錯誤。

示例

下麵的例子展示了 java.io.BufferedWriter.write(char[] cbuf, int off, int len) 方法的用法。

package com.tutorialspoint;

import java.io.BufferedWriter;
import java.io.IOException;
import java.io.StringWriter;

public class BufferedWriterDemo {
   public static void main(String[] args) throws IOException {
      StringWriter sw = null;
      BufferedWriter bw = null;
      
      char[] cbuf = "ABCDEFGHIJKLMN".toCharArray();
      
      try {
         // create string writer
         sw = new StringWriter();
         
         //create buffered writer
         bw = new BufferedWriter(sw);
         
         // write from specified character buffer to stream
         bw.write(cbuf, 2, 5);
         
         // forces out the characters to string writer
         bw.flush();
         
         // string buffer is created
         StringBuffer sb = sw.getBuffer();
         
         //prints the string
         System.out.println(sb);
            
      } catch(IOException e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         // releases any system resources associated with the stream
         if(sw!=null)
            sw.close();
         if(bw!=null)
            bw.close();
      }
   }
}

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

CDEFG

相關用法


注:本文由純淨天空篩選整理自 Java.io.BufferedWriter.write() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。