File file
= new File("G:\\oracle视频\\韩顺平.玩转oracle第0讲.开山.wmv");
FileInputStream in
= new FileInputStream(file
);
FileOutputStream out
= new FileOutputStream("C:\\Users\\Administrator\\Desktop\\test\\" +"\\"+ file
.getName());
int len
=0;
byte[] bytes
= new byte[1024*8];
while ((len
=in
.read(bytes
))!=-1){
System
.out
.println("次数");
out
.write(bytes
,0,len
);
out
.flush();
}
out
.close();
in
.close();
System
.out
.println("复制完成");
转载请注明原文地址: https://mac.8miu.com/read-495854.html