IO流之ByteArrayInput/OutputStream

Posted tanlei-sxs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IO流之ByteArrayInput/OutputStream相关的知识,希望对你有一定的参考价值。

ByteArrayInputStream:是把字节数组当成源的输入流

    String string="hello shanghai";
    ByteArrayInputStream bis=new ByteArrayInputStream(string.getBytes());
    int data=-1;
    while ((data=bis.read())!=-1) {
        System.out.print((char)data);
        
    }
    //bis.close();

 

ByteArrayInputStream:是把字节数组当做目标的输出流

ByteArrayOutputStream bos=new ByteArrayOutputStream();
     bos.write(97);
     bos.write("hello world".getBytes());
     byte[] buff=bos.toByteArray();
     for(byte data:buff) {
         System.out.println((char)data);
     }
     
     FileOutputStream fos=new FileOutputStream("D:\aa.txt",true);
     bos.writeTo(fos);//把 ByteArrayOutputStream内部缓冲区的数据写到对应的文件输出流中
     fos.close();

 

以上是关于IO流之ByteArrayInput/OutputStream的主要内容,如果未能解决你的问题,请参考以下文章

io流之转换流InputStreamReaderOutputStreamWriter

IO流之字节,字符

IO流之IO流综述

IO流之InputStream和OutputStream

IO流之文件切割,文件合并 Java

io流之inputstreamoutputstreamreaderwriter