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


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


描述

這個java.io.BufferedWriter.write(int c) 方法寫入單個字符。

聲明

以下是聲明java.io.BufferedWriter.write(int c)方法:

public void write(int c)

參數

  • c-- 指定要寫入的字符的整數

返回值

此方法不返回任何值。

異常

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

示例

下麵的例子展示了 java.io.BufferedWriter.write(int c) 方法的用法。

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;
      
      try{
         // create string writer
         sw = new StringWriter();
         
         //create buffered writer
         bw = new BufferedWriter(sw);
         
         // integer range represents alphabets in uppercase
         for(int i = 65; i<=90; i++)
         {
            bw.write(i);
         }
         
         // 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();
      }
   }
}

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

ABCDEFGHIJKLMNOPQRSTUVWXYZ

相關用法


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