码迷,mamicode.com
首页 > 编程语言 > 详细

java字节缓冲流

时间:2021-05-03 12:29:19      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:public   red   close   cep   tst   class   oid   new   row   


import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;

//字节缓冲流
public class BufferInputStream1 {
    public static void main(String[] args) throws IOException {
        BufferedInputStream inputStream = new BufferedInputStream(new FileInputStream("E:\\Workpace\\abc.txt"));
        byte[] bytes = new byte[1024];
        int len;
        while ((len = inputStream.read(bytes)) != -1){
            System.out.print(new String(bytes,0,len));
        }
        inputStream.close();
    }
}


java字节缓冲流

标签:public   red   close   cep   tst   class   oid   new   row   

原文地址:https://www.cnblogs.com/codegzy/p/14723883.html

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