我今天在我们的一个实用程序类中遇到了一个问题。它是文件的助手,包含一些静态文件复制例程。以下是提取的相关方法以及测试方法。
问题是有时 setLastModified 调用失败,返回 false。
在我的 PC(Windows 7,最新 Java)上,我有时会收到“setLastModified failed”消息(大约 25 次 / 1000)。
我现在通过删除 FileChannel.close 调用解决了这个问题,但我更愿意理解为什么会发生这种情况,即使这是正确的解决方案。
还有其他人遇到同样的问题吗?
private void testCopy() throws FileNotFoundException, IOException {
File src = new File("C:\\Public\\Test-Src.txt");
File dst = new File("C:\\Public\\Test-Dst.txt");
for (int i = 0; i < 1000; i++) {
copyFile(src, dst);
}
}
public static void copyFile(final File from, final File to) throws FileNotFoundException, IOException {
final String tmpName = to.getAbsolutePath() + ".tmp";
// Copy to a .tmp file.
final File tmp = new File(tmpName);
// Do the transfer.
transfer(from, tmp);
// Preserve time.
if (!tmp.setLastModified(from.lastModified())) {
System.err.println("setLastModified failed!");
}
// In case there's one there already.
to.delete();
// Rename it in.
tmp.renameTo(to);
}
public static void transfer(final File from, final File to) throws IOException {
FileInputStream in = null;
FileOutputStream out = null;
try {
in = new FileInputStream(from);
out = new FileOutputStream(to);
transfer(in, out);
} finally {
if (null != in) {
in.close();
}
if (null != out) {
out.close();
}
}
}
public static void transfer(final FileInputStream from, final FileOutputStream to) throws IOException {
FileChannel srcChannel = null;
FileChannel dstChannel = null;
//try {
srcChannel = from.getChannel();
dstChannel = to.getChannel();
srcChannel.transferTo(0, srcChannel.size(), dstChannel);
//} finally {
// if (null != dstChannel) {
// dstChannel.close();
// }
// if (null != srcChannel) {
// srcChannel.close();
// }
}
}
编辑:我已将代码更改为仅关闭Streams
s 而不是FileChannel
s,因为研究表明关闭 sFileChannel
也会关闭Stream
.