Java.io.FileOutputStream.write() 方法



描述

java.io.FileOutputStream.write(byte[] b, int off, int len) 方法将指定字节数组中从偏移量 off 开始的 len 个字节写入此文件输出流。

声明

以下是 java.io.FileOutputStream.write(byte[] b, int off, int len) 方法的声明:

public void write(byte[] b, int off, int len)

参数

  • b - 源缓冲区。

  • off - 数据的起始偏移量。

  • len - 要写入的字节数。

返回值

此方法不返回值。

异常

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

示例

以下示例演示了 java.io.FileOutputStream.write(byte[] b, int off, int len) 方法的使用。

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 = {65,66,67,68,69};
      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, 2, 3);
         
         // 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();
      }
   }
}

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

CDE
java_io_fileoutputstream.htm
广告