Java Java.io.DataOutputStream.write() 方法

  • 描述

    java.io.BufferedInputStream.write(int b)方法将指定的源字节写入基础输出流。成功调用后, written的计数器将增加1。
  • 声明

    以下是java.io.DataOutputStream.write(int b)方法的声明-
     public void write(int b)
  • 参数

    b源字节,为整数。
  • 返回值

    此方法不返回任何值。
  • 异常

    IOException如果发生I / O错误。
  • 例子

    以下示例显示java.io.DataOutputStream.write(int b)方法的用法。
     
    package com.jc2182; 
    import java.io.ByteArrayOutputStream;
    import java.io.DataOutputStream;
    import java.io.IOException;
    
    public class DataOutputStreamDemo {
       public static void main(String[] args) throws IOException {
          ByteArrayOutputStream baos = null;
          DataOutputStream dos = null;
          int[] buf = {65, 66, 67, 68, 69, 70, 71};
          
          try {
             // create byte array output stream
             baos = new ByteArrayOutputStream();
             
             // create data output stream
             dos = new DataOutputStream(baos);
             
             // write to the stream from integer array
             for(int i: buf) {
                dos.write(i);
             }
             
             // flushes bytes to underlying output stream
             dos.flush();
       
             // for each byte in the baos buffer content
             for(byte b:baos.toByteArray()) {
             
                // convert byte to char
                char c = (char)b;
                
                // print character
                System.out.print(c);
             }
             
          } catch(Exception e) {
             // if any error occurs
             e.printStackTrace();
          } finally {
             // releases all system resources from the streams
             if(baos!=null)
                baos.close();
             if(dos!=null)
                dos.close();
          }
       }
    }
    
    让我们编译并运行以上程序,这将产生以下结果-
     ABCDEFG