当前位置:   article > 正文

Java中的IO流(BufferedinputStream)_java bufferedinputstream (char)

java bufferedinputstream (char)

BufferedinputStream:

字节缓冲输入流
与BufferedinputStream相似

public static void main(String[] args) throws IOException {
		//1:创建字节缓冲输入流  (包装流,底层包装的是字节缓冲流)
		BufferedInputStream bis = new BufferedInputStream(new
		 FileInputStream("c.txt"));
		//2:读取数据
		 //2.1 一次读取一个字节
		/* int read = bis.read();
		 System.out.println((char)read);*/
		/*int num = 0;
		while((num = bis.read())!=-1){
			System.out.print((char)num);
		}*/
		 //2.2 一次读取一个字节数组
		int num = 0;
		 byte[] by = new byte[1024];
		 while((num = bis.read(by))!=-1){
			 System.out.print(new String(by,0,num));
		 }
		//3:关闭流
		bis.close();
		
		
		
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/146886
推荐阅读
相关标签
  

闽ICP备14008679号