先从这一段代码开始:
private void copyFile(String srcPath, String destPath) throws IOException {
// 源文件
File srcFile = new File(srcPath);
// 输出文件
File destFile = new File(destPath);
// 输入流-将源文件读取到内存
InputStream in = new FileInputStream(srcFile);
// 输出流-从内存中读取并写到磁盘
OutputStream out = new FileOutputStream(destFile);
// 容器
byte[] flush = new byte[1024];
// 长度
int length;
int count=0;
//一次最多读取1024个,同时一次也写入最多1024;边读边写
while ((length = in.read(flush)) != -1) {
System.out.println("length:" + length);
out.write(flush, 0, length);
++count;
}
System.out.println(count);
// 关闭流
in.close();
out.close();
}
打印的结果:
length:1024
...
length:1024
length:173
196
一共打印了196次,所以这个文件的总长度为:1024*195+173
当你遇到IO的时候,就想两件事,第一,我的内存是中心,第二看看流的方向(矢量)!
读文件
BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(“infilename”)));
不管你从磁盘读,从网络读,或者从键盘读,读到内存,就是InputStream。写文件
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(“outfilename”)));
不管你写倒磁盘,写到网络,或者写到屏幕,都是OuputStream。
参考:
InputStream与OutputStream的比较
InputStream类中的三种read方法