FileInputStream fis = new FileInputStream(src);
FileOutputStream fos = new FileOutputStream(dis);
while(fis.read()!=-1){
fos.write(fis.read());
}
fis.close();
fos.close();
七77
金子砸死我吧
相关分类