Java.io.ByteArrayOutputStream.close() 方法


Java.io.ByteArrayOutputStream.close() 方法

package com.codingdict;



import java.io.ByteArrayOutputStream;

import java.io.IOException;



public class ByteArrayOutputStreamDemo {



   public static void main(String[] args) throws IOException {

      byte[] buf = {65, 66, 67, 68, 69};

      ByteArrayOutputStream baos = null;



      try {



         // create new ByteArrayOutputStream

         baos = new ByteArrayOutputStream();



         // close is invoked before baos.

         baos.close();



         // writing byte array to the output stream

         baos.write(buf);



         // print as string

         System.out.print(baos.toString());



      } catch(Exception e) {



         // if I/O error occurs

         e.printStackTrace();

      } finally {

         if(baos!=null)

            baos.close();

      }   

   }

}