当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.io.FileOutputStream.write()用法及代码示例



描述

这个java.io.FileOutputStream.write(int b)方法将单个字节写入此文件输出流。

声明

以下是声明java.io.FileOutputStream.write(int b)方法 -

public void write(int b)

参数

b− 要写入的字节。

返回值

此方法不返回任何值。

异常

IOException− 如果发生任何 I/O 错误。

示例

下面的例子展示了 java.io.FileOutputStream.write(int b) 方法的用法。

package com.tutorialspoint;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      FileOutputStream fos = null;
      FileInputStream fis = null;
      byte b = 66;
      int i = 0;
      char c;
      
      try {
         // create new file output stream
         fos = new FileOutputStream("C://test.txt");
         
         // writes byte to the output stream
         fos.write(b);
         
         // flushes the content to the underlying stream
         fos.flush();
         
         // create new file input stream
         fis = new FileInputStream("C://test.txt");
         
         // read till the end of the file
         while((i = fis.read())!=-1) {
         
            // convert integer to character
            c = (char)i;
            
            // prints
            System.out.print(c);
         }
      } catch(Exception ex) {
         // if an error occurs
         ex.printStackTrace();
      } finally {
         // closes and releases system resources from stream
         if(fos!=null)
            fos.close();
         if(fis!=null)
            fis.close();
      }
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

B

相关用法


注:本文由纯净天空筛选整理自 Java.io.FileOutputStream.write() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。