void write(byte b) void flush void write(byte b, int off, int len) 描述 所述java.io.OutputStream.write(byte[] b)中的方法将b.length个从指定的字节数组此输出流字节。写(b)的一般合同是它应该与调用写入具有完全相同的效果(b,0,b.length) 声明 以下是java.io.OutputStream.write()方法的声明。 public void write(byte[] b) 参数 b- 数据。 返回值 此方法不返回值。 异常 IOException - 如果发生I / O错误。 实例 以下示例显示了java.io.OutputStream.write()方法的用法。 package com.tutorialspoint; import java.io.*; public class OutputStreamDemo { public static void main(String[] args) { byte[] b = {'h', 'e', 'l', 'l', 'o'}; try { // create a new output stream OutputStream os = new FileOutputStream("test.txt"); // craete a new input stream InputStream is = new FileInputStream("test.txt"); // write something os.write(b); // read what we wrote for (int i = 0; i < b.length; i++) { System.out.print("" + (char) is.read()); } } catch (Exception ex) { ex.printStackTrace(); } } } 让我们编译并运行上面的程序,这将产生以下结果 hello void flush void write(byte b, int off, int len)