首页 | 社区 | 博客 | 招聘 | 文章 | 新闻 | 下载 | 读书 | 代码
亲,您未登录哦! 登录 | 注册

Java拷贝文件

打印文章

分享到:
import java.io.*;

public class jCOPY {
   public static void main(String args[]){
     try {
       jCOPY j = new jCOPY(); j.CopyFile(new File(args[0]),new File(args[1]));
       }
     catch (Exception e) {
       e.printStackTrace();
       }
     }

   public void CopyFile(File in, File out) throws Exception {
     FileInputStream fis  = new FileInputStream(in);
     FileOutputStream fos = new FileOutputStream(out);
     byte[] buf = new byte[1024];
     int i = 0;
     while((i=fis.read(buf))!=-1) {
       fos.write(buf, 0, i);
       }
     fis.close();
     fos.close();
     }
   }

本栏文章均来自于互联网,版权归原作者和各发布网站所有,本站收集这些文章仅供学习参考之用。任何人都不能将这些文章用于商业或者其他目的。( Pfan.cn )

编程爱好者论坛

本栏最新文章