Java - ByteArrayOutputStream write(int b)



描述

Java ByteArrayOutputStream write(int b) 方法将指定的字节写入此流。

声明

以下是java.io.ByteArrayOutputStream.write(int b) 方法的声明:

public void write(int b)

参数

b − 指定的字节,以 0-255 范围内的整数表示

返回值

此方法不返回任何值。

异常

示例 1

以下示例演示了 Java ByteArrayOutputStream write(int byte) 方法的用法。我们创建了一个 ByteArrayOutputStream 引用,然后用 ByteArrayOutputStream 对象对其进行了初始化。现在,我们使用 write() 方法将一些值写入输出流,并使用 toString() 方法打印流的字符串表示形式。最后,在 finally 块中,我们使用 close() 方法关闭流。

package com.tutorialspoint;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
public class ByteArrayOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      String str = "";      
      byte[] bs = {65, 66, 67, 68, 69};
      ByteArrayOutputStream baos = null;      
      try {
         
         // create new ByteArrayOutputStream
         baos = new ByteArrayOutputStream();
      
         // writing bytes to output stream
         baos.write(75);
         baos.write(65);
         
         // converts buffer to string
         str = baos.toString();
         
         // print
         System.out.println(str);
         
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(baos!=null)
            baos.close();
      }   
   }
}

输出

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

KA

示例 2

以下示例演示了 Java ByteArrayOutputStream write(int byte) 方法的用法。我们创建了一个 ByteArrayOutputStream 引用,然后用 ByteArrayOutputStream 对象对其进行了初始化。现在,我们在 for 循环中使用 write() 方法将完整的字节数组写入输出流,并使用 toString() 方法打印流的字符串表示形式。最后,在 finally 块中,我们使用 close() 方法关闭流。

package com.tutorialspoint;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
public class ByteArrayOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      String str = "";      
      byte[] bs = {65, 66, 67, 68, 69};
      ByteArrayOutputStream baos = null;      
      try {
         
         // create new ByteArrayOutputStream
         baos = new ByteArrayOutputStream();
      
         // write byte array to the output stream
         for(int i=0; i< bs.length; i++){
            baos.write(bs[i]);
         }         
         
         // converts buffer to string
         str = baos.toString();
         
         // print
         System.out.println(str);
         
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(baos!=null)
            baos.close();
      }   
   }
}

输出

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

ABCDE
java_bytearrayoutputstream.htm
广告