Java.io.ByteArrayOutputStream.toByteArray() 方法
描述
java.io.ByteArrayOutputStream.toByteArray() 方法创建一个新分配的缓冲区,其大小为该输出流的当前大小。
声明
以下是 java.io.ByteArrayOutputStream.toByteArray() 方法的声明 −
public byte[] toByteArray()
参数
NA
返回值
该方法从该输出流返回字节数组。
异常
NA
示例
下面的例子展示了 java.io.ByteArrayOutputStream.toByteArray() 方法的使用。
package com.tutorialspoint; import java.io.ByteArrayOutputStream; import java.io.IOException; public class ByteArrayOutputStreamDemo { public static void main(String[] args) throws IOException { byte[] bs = {65, 66, 67, 68, 69}; ByteArrayOutputStream baos = null; try { // create new ByteArrayOutputStream baos = new ByteArrayOutputStream(); // write byte array to the output stream baos.write(bs); // for each byte in the buffer for (byte b : baos.toByteArray()) { // write byte in to output stream baos.write(b); // print every byte System.out.println(b); } } catch(Exception e) { // if I/O error occurs e.printStackTrace(); } finally { if(baos!=null) baos.close(); } } }
让我们编译并运行上面的程序,这将产生下面的结果 −
65 66 67 68 69