黑马程序员技术交流社区

标题: 定义一个文件输入流,调用read(byte[] b)方法将exercise.txt文... [打印本页]

作者: 闭关修行小和尚    时间: 2015-12-31 20:52
标题: 定义一个文件输入流,调用read(byte[] b)方法将exercise.txt文...
@SuppressWarnings("unused")
        public static void main(String[] args) throws IOException {
                FileInputStream fis = new FileInputStream("exercise.txt");

                byte[] bys = new byte[5];
                int len = 0;
                while ((len = fis.read(bys)) != -1) {
                        System.out.print(new String(bys));
                }
        }


作者: chengz    时间: 2015-12-31 21:15
今天刚学  在学习学习
作者: fzh945    时间: 2015-12-31 22:52
视频教程上有讲解




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2