首页 > 编程语言 > 详细

java之IO流

时间:2018-07-09 22:21:07      阅读:148      评论:0      收藏:0      [点我收藏+]
 1 public class Demo1_FileInputStream {
 2 
 3     public static void main(String[] args) throws IOException {
 4         //demo1();
 5         FileInputStream fis = new FileInputStream("a.txt");  // 内容为  abc
 6         int x;
 7         while((x = fis.read())!=-1) {
 8             System.out.println(x);
 9         }
10     }
11 
12     public static void demo1() throws FileNotFoundException, IOException {
13         FileInputStream fis = new FileInputStream("a.txt");  // 内容为  abc
14         int x = fis.read();                                  // x = 97
15         System.out.println(x);                               // 当 文件中的内容读完后再读时  返回值为 -1
16         fis.close();
17     }
18 
19 }

 

java之IO流

原文:https://www.cnblogs.com/jiangjunwei/p/9286373.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!