Java - 复制 JPG 同时保留所有文件属性

发布于 2024-12-08 02:50:08 字数 56 浏览 1 评论 0原文

在保持文件所有属性(创建日期、日期等)的同时移动/复制文件的最佳方法是什么?

谢谢

What is the best way to move/copy file while maintaining all its attributes (Date created, Date, etc)?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅笑依然 2024-12-15 02:50:08

如果您使用的是 Java 7,请使用 java.nio.file.Files.copy(Path source, Path target, CopyOption... options)

使用 COPY_ATTRIBUTES 选项来维护上次修改时间:

COPY_ATTRIBUTES
尝试将与该文件关联的文件属性复制到
目标文件。复制的确切文件属性是平台和
依赖于文件系统,因此未指定。 至少,
如果两者都支持,最后修改时间将复制到目标文件
源文件存储和目标文件存储。
复制文件时间戳可能会
导致精度损失。

添加重点

对于 Java 6 及更早版本,Apache commons 有复制文件的功能

    org.apache.commons.io.FileUtils.copyFile(File srcFile, File destFile,
boolean preserveFileDate)

注意注释

将preserveFileDate设置为true尝试保留文件的最后一个日期
使用 File.setLastModified(long) 修改日期/时间,但是它是
不保证操作一定会成功。如果修改
操作失败,无任何提示。

这只会尝试保留修改日期,而不保留其他文件属性。

否则,您将必须使用 Runtime.exec 或类似的东西来运行外部进程。

If you are using Java 7, use java.nio.file.Files.copy(Path source, Path target, CopyOption... options)

Use the COPY_ATTRIBUTES option to maintain the last modified time:

COPY_ATTRIBUTES
Attempts to copy the file attributes associated with this file to the
target file. The exact file attributes that are copied is platform and
file system dependent and therefore unspecified. Minimally, the
last-modified-time is copied to the target file if supported by both
the source and target file store
. Copying of file timestamps may
result in precision loss.

Emphasis added

For Java 6 and earlier, Apache commons has a function to copy files

    org.apache.commons.io.FileUtils.copyFile(File srcFile, File destFile,
boolean preserveFileDate)

Note the comments

Setting preserveFileDate to true tries to preserve the file's last
modified date/times using File.setLastModified(long), however it is
not guaranteed that the operation will succeed. If the modification
operation fails, no indication is provided.

This will only try to preserve the modified date, and not other file attributes.

Otherwise, you will have to use Runtime.exec or something similar to run an external process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文