12

我今天在我们的一个实用程序类中遇到了一个问题。它是文件的助手,包含一些静态文件复制例程。以下是提取的相关方法以及测试方法。

问题是有时 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();
  //  }
  }
}

编辑:我已将代码更改为仅关闭Streamss 而不是FileChannels,因为研究表明关闭 sFileChannel也会关闭Stream.

4

2 回答 2

11

在对拥有 java 库源的各个站点进行一些研究之后,它看起来非常像FileChannel.close最终调用其父对象的FileInputStream.closeor 。FileOutputStream.close

这向我建议您应该关闭 FileChannel 或 Stream 但不能同时关闭两者

鉴于此,我正在更改我原来的帖子以反映一种正确的方法,即关闭Streams 而不是Channels。

于 2011-11-21T11:10:21.230 回答
3

如果您使用的是 Java 7,则可以使用Files.copy(Path source, Path target, CopyOption... options)进行此操作,以避免编写、测试和调试您自己的实现。

或者,考虑使用外部库,例如Apache Commons IO。具体来说,您会发现FileUtils.copyFile(File srcFile, File destFile)很有趣:

/** 
 * Copies a file to a new location preserving the file date.
 * [...]
 * @param srcFile  an existing file to copy, must not be <code>null</code>
 * @param destFile  the new file, must not be <code>null</code>
 * [...]
 */
public static void copyFile(File srcFile, File destFile) throws IOException
于 2011-11-12T18:25:46.403 回答