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

文件的复制

时间:2014-08-07 00:19:07      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   os   io   文件   ar   

package struts;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class CopyFile {
    public static void main(String[] args) {
        String newPath = "d:/stu.xls";
        String oldPath = "e:/students.xls";
        int sum = 0;
        int bytered = 0;
        File oldFile = new File("d:/a.txt");
        if(oldFile.exists()){
            try {
                InputStream inStream = new FileInputStream(oldPath);
                OutputStream outStream = new FileOutputStream(newPath);
                byte[] buffer = new byte[1000]; 
                try {
                    while((bytered = inStream.read(buffer))!=-1){
                        System.out.println(bytered);
                        sum += bytered;
                        System.out.println(sum);
                        outStream.write(buffer, 0, bytered);
                        
                    }
                    inStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
                
            } catch (FileNotFoundException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            
            
        }
    }
}

 

文件的复制,布布扣,bubuko.com

文件的复制

标签:style   blog   color   java   os   io   文件   ar   

原文地址:http://www.cnblogs.com/lakelise/p/3895881.html

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