ABC23 发表于 2018-4-12 19:11:43

缓冲数组读取文件。

int len = 0;
      byte[] buf = new byte;
      while((len=fis.read(buf))!=-1){
            System.out.println(new String(buf,0,len));
      }

=====================

这里,每次调用fis.read()读到的数据会覆盖原来的数据,还是append到原来的后面?

ABC23 发表于 2018-4-12 19:12:36

这里buff数组的作用是什么?》
页: [1]
查看完整版本: 缓冲数组读取文件。