A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 黑马-王言龙 中级黑马   /  2012-7-20 19:23  /  2056 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 黑马-王言龙 于 2012-7-20 21:51 编辑
  1. import java.io.*;
  2. public class Test5 {

  3.         public static void main(String[] args) throws Exception {
  4.                 BufferedInputStream bis = new BufferedInputStream(new FileInputStream("G:\\Demo.java"));
  5.                 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("E:\\Demo_copy.java", true));

  6.                 byte[] buf = new byte[1024];
  7.                 while(bis.read(buf)!=-1) {
  8.                         bos.write(buf, 0, buf.length);
  9.                         bos.flush();
  10.                 }
  11.                 bis.close();
  12.                 bos.close();
  13.                 System.out.println("成功");
  14.         }
  15. }
复制代码
复制成功后,为什么会有蓝色区域的那么多空格呢?

评分

参与人数 1技术分 +1 收起 理由
滔哥 + 1

查看全部评分

1 个回复

倒序浏览
import java.io.*;
public class Test5 {

        public static void main(String[] args) throws Exception {
                BufferedInputStream bis = new BufferedInputStream(new FileInputStream("G:\\Demo.java"));
                BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("E:\\Demo_copy.java", true));
                int len=0;
               byte[] buf = new byte[1024];
               while((len=bis.read(buf))!=-1) {//获得读取数据的长度len  
                      //System.out.println(new String(buf,0,len));
                       bos.write(buf, 0, len);       //写入存有数据的部分,空的部分不会被写进文件
                       bos.flush();
               }           
                 bis.close();
                bos.close();
                System.out.println("成功");
        }
}

评分

参与人数 2技术分 +1 黑马币 +2 收起 理由
滔哥 + 1
黑马-王言龙 + 2

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马