黑马程序员技术交流社区

标题: 求助攻lol [打印本页]

作者: 再来一个果丹皮    时间: 2016-6-20 17:17
标题: 求助攻lol
定义一个文件输入流,调用read(byte[] b)方法将exercise.txt
文件中的所有内容打印出来(byte数组的大小限制为5)。


作者: 孟小垚    时间: 2016-6-20 20:16
        public static void main(String[] args) throws Exception{
                BufferedInputStream bis = new BufferedInputStream(new FileInputStream(""));
                ByteArrayOutputStream bos = new ByteArrayOutputStream();
                byte[] arr = new byte[5];
                int len;
                while((len = bis.read(arr)) != -1) {
                        bos.write(arr, 0, len);
                }
                bis.close();
                System.out.println(bos);
        }




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