目录

void writeTo(OutputStream out)

描述 (Description)

java.io.ByteArrayOutputStream.writeTo(OutputStream out)方法将此字节数组输出流的内容写入指定的输出流参数。

声明 (Declaration)

以下是java.io.ByteArrayOutputStream.writeTo(OutputStream out)方法的声明 -

public void writeTo(OutputStream out)

参数 (Parameters)

out - 要写入的指定输出流

返回值 (Return Value)

此方法不返回任何值。

异常 (Exception)

IOException - 如果发生I/O错误。

例子 (Example)

以下示例显示了java.io.ByteArrayOutputStream.writeTo(OutputStream out)方法的用法。

package com.iowiki;
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
↑回到顶部↑
WIKI教程 @2018