码迷,mamicode.com
首页 > 其他好文 > 详细

内存输出流

时间:2017-02-16 23:59:31      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:txt   ring   blog   logs   font   tostring   string   []   read   

ByteArrayOutputStream 和 ByteArrayInputStream(理解)

特点: 都是在内存中对数据进行操作 , 不需要关闭


ByteArrayOutputStream

* 构造方法: public ByteArrayOutputStream() ;

* 成员方法:

public byte[] toByteArray() ;

public String toString() ;

FileInputStream fis = new FileInputStream("a.txt");

ByteArrayOutputStream baos = new ByteArrayOutputStream();

int b;

while((b = fis.read()) != -1) {

    baos.write(b);

}

System.out.println(baos);

fis.close();

 

内存输出流

标签:txt   ring   blog   logs   font   tostring   string   []   read   

原文地址:http://www.cnblogs.com/loaderman/p/6407705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!