标签:
/**
}
public static void main(String[] args) {
// TODO Auto-generated method stub
File a = new File("");
File b = new File("");
long start,end;
start = System.currentTimeMillis();
copy(a,b);
end = System.currentTimeMillis();
System.out.println("复制所用时间:" + (end - start) + "ms");
}
标签:
原文地址:http://www.cnblogs.com/liucong110/p/5402190.html