void writeTo(OutputStream out) void write(int b) void close 描述 java.io.ByteArrayOutputStream.writeTo(OutputStream out) 方法写入此字节数组输出流的到指定的输出流参数的内容。 声明 以下是 java.io.ByteArrayOutputStream.writeTo(OutputStream out) 方法的声明 public void writeTo(OutputStream out) 参数 out − 要写入的指定输出流 返回值 此方法不返回任何值。 异常 IOException − 如果发生I / O错误。 实例 以下示例显示了java.io.ByteArrayOutputStream.writeTo(OutputStream out)方法的用法。 package com.tutorialspoint; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; public class ByteArrayOutputStreamDemo { public static void main(String[] args) throws IOException { byte[] bs = {65, 66, 67, 68, 69, 70, 71, 72}; OutputStream os = null; ByteArrayOutputStream baos = null; try { // create new output stream os = new ByteArrayOutputStream(); // create new ByteArrayOutputStream baos = new ByteArrayOutputStream(); // write buffer to the byte array output stream baos.write(bs); // write to the output stream baos.writeTo(os); // print the byte as default character set System.out.println(os.toString()); } catch(Exception e) { // if I/O error occurs e.printStackTrace(); } finally { if(baos!=null) baos.close(); if(os!=null) os.close(); } } } 让我们编译并运行上面的程序,这将产生以下结果 ABCDEFGH void write(int b) void close