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

字节输入流类

时间:2017-05-07 20:30:08      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:fileinput   row   while   src   except   input   stat   bsp   main   

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

//创建文件输入流对象
  File f=new File("src/main2dishizhang/java.txt");
  InputStream  is=new FileInputStream(f);

//循环读数据
  int b;
  while((b=is.read())!=-1){
   System.out.println((char)b);
  }
 }

字节输入流类

标签:fileinput   row   while   src   except   input   stat   bsp   main   

原文地址:http://www.cnblogs.com/xuling123/p/6822059.html

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