文件复制
Posted rookietoboss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件复制相关的知识,希望对你有一定的参考价值。
自定义的很简单的工具类
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();
以上是关于文件复制的主要内容,如果未能解决你的问题,请参考以下文章