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

文件复制

时间:2019-06-29 11:07:32      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:exce   main   code   stream   byte   throws   puts   exception   color   

自定义的很简单的工具类

package com.neo.util;

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

public class Fileutil {
    public static void main(String[] args) throws IOException {
        File filea = new File("e:"+File.separator+"test"+File.separator+args[0]);
        File file = new File("e:"+File.separator+"test"+File.separator+args[1]);
        OutputStream out=new FileOutputStream(file);
InputStream in=new FileInputStream(filea);
        byte[] b=new  byte[1024];
        int temp=0;
        while ((temp=in.read(b))!=-1) {
            out.write(b,0,temp);
        }
        in.close();
        out.close();
    }

}

 

文件复制

标签:exce   main   code   stream   byte   throws   puts   exception   color   

原文地址:https://www.cnblogs.com/rookietoboss/p/11105706.html

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