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

InputStream字节输入流

时间:2019-08-16 20:42:07      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:png   mamicode   row   dem   color   rgs   ima   str   pre   

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;

public class FileInputStreamDemo {
    public static void main(String[] args) throws IOException {
        File file = new File("E:\\IO流\\java\\1.txt");
        FileInputStream f = new FileInputStream(file);
        int n = 0;
        while ((n = f.read()) != -1) {
            System.out.print((char) n);

        }
        f.close();
    }
}

技术图片

技术图片

 

InputStream字节输入流

标签:png   mamicode   row   dem   color   rgs   ima   str   pre   

原文地址:https://www.cnblogs.com/zhai1997/p/11366015.html

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