int size void flush void write(byte b, int off, int len) 描述 所述java.io.DataOutputStream.size()方法返回写入字段的值。 声明 以下是java.io.DataOutputStream.size()方法的声明 public final int size() 参数 NA 返回值 此方法返回写入的计数器的最后一个值。 异常 NA 实例 以下示例显示了java.io.DataOutputStream.size()方法的用法。 package com.tutorialspoint; import java.io.DataOutputStream; import java.io.FileOutputStream; import java.io.IOException; public class DataOutputStreamDemo { public static void main(String[] args) throws IOException { FileOutputStream fos = null; DataOutputStream dos = null; byte[] buf = {87,64,72,31,90}; try { // create file output stream fos = new FileOutputStream("c:/test.txt"); // create data output stream dos = new DataOutputStream(fos); int size = 0; // for each byte in the buffer for (byte b:buf) { dos.write(b); // current value of the counter written size = dos.size(); // print System.out.print("Size: "+size + "; "); } } catch(Exception e) { // if any error occurs e.printStackTrace(); } finally { // releases all system resources from the streams if(fos!=null) fos.close(); if(dos!=null) dos.close(); } } } 让我们编译并运行上面的程序,这将产生以下结果 Size: 1; Size: 2; Size: 3; Size: 4; Size: 5; void flush void write(byte b, int off, int len)