我需要读取多个小文件并将它们附加到一个更大的单个文件中。
Base64OutputStream baos = new Base64OutputStream(new FileOutputStream(outputFile, true));
for (String fileLocation : fileLocations) {
InputStream fis = null;
try
{
fis = new FileInputStream(new File(fileLocation));
int bytesRead = 0;
byte[] buf = new byte[65536];
while ((bytesRead=fis.read(buf)) != -1) {
if (bytesRead > 0) baos.write(buf, 0, bytesRead);
}
}
catch (Exception e) {
logger.error(e.getMessage());
}
finally{
try{
if(fis != null)
fis.close();
}
catch(Exception e){
logger.error(e.getMessage());
}
}
}
一切都很标准,但我发现,除非我为每个输入文件打开一个新的 baos(将其包含在循环中),否则 baos 编写的第一个文件之后的所有文件都是错误的(输出不正确)。
问题:
- 有人告诉我,为同一资源来回打开/关闭输出流不是一个好习惯,为什么?
- 为什么使用单个输出流不能提供与多个单独输出流相同的结果?