本帖最后由 柳雷 于 2012-7-21 14:53 编辑
src\\com\\heima\\a.txt- import java.io.*;
- public class Copy {
- public static void main(String[]args){
- File file=new File("src\\com\\heima\\1.txt");//要用“\\”,其实你也可以用绝对路径的。
- BufferedInputStream bufin=null;
- BufferedOutputStream bufout=null;
- try{
- bufin=new BufferedInputStream(new FileInputStream(file));
- bufout=new BufferedOutputStream(new FileOutputStream("2.txt"));
- byte[]buf=new byte[1024*1024*2];
- int len=0;
- while((len=bufin.read(buf))!=-1){
- bufout.write(buf,0,len);
- }
- }
- catch(IOException e){
- e.printStackTrace();
- throw new RuntimeException("文件复制失败");
- }
- finally{
- try{if(bufin!=null) bufin.close();if(bufout!=null) bufout.close();}
- catch(IOException e1){throw new RuntimeException("关闭失败");}
- }
- }
- }
复制代码
从图二中可以看出,默认当前目录是工程的根目录
|