本帖最后由 张向辉 于 2013-2-6 14:43 编辑
public class copyTu {
/**
* @param args
*/
public static void main(String[] args) throws IOException {
long start=System.currentTimeMillis();
copy();
long end=System.currentTimeMillis();
System.out.println((end-start)+"毫秒");
}
public static void copy() throws IOException {
FileInputStream fis=null;
FileOutputStream fos=null;
fis=new FileInputStream("d:\\My Documents\\My Pictures\\1.jpg");
fos=new FileOutputStream("d:\\My Documents\\My Pictures\\2.jpg");
byte[] b=new byte[1024];
int len=0;
while ((len=fis.read(b))!=-1) {
fos.write(b, 0, len);
}
}
}
这代码和老师讲的差不多,编译没问题,但是运行的时候都是打印0毫秒,不知道什么原因。。。
|