相关文章:Java中如何通过字节输入流读取文件?
相关文章:Java中如何通过字节输出流向文件中写内容?
本篇:Java中如何复制文件?
package test03;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
/**
* 复制文件,通过边读边写的方式
*/
public class Copy {
public static void main(String[] args) {
FileInputStream fis = null;
FileOutputStream fos = null;
try {
//读取文件
fis = new FileInputStream("F:\\test01\\test01.txt");
fos = new FileOutputStream("F:\\test01\\test02.txt",true);
byte[] bytes = new byte[1024*1024];//一次最多复制1M
int readCount = 0;
while ((readCount = fis.read(bytes)) != -1){
//写入到文件,读了多少写多少
fos.write(bytes,0,readCount);
}
fos.flush();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
//分开try,防止出现异常
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}