Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前,我有一种机制可以检查进出系统的文档。如果某些内容尚未修改,则不会将其签入文档管理系统。不幸的是,我现在在这个过程中一直在压缩和解压缩文件,任何解压缩/压缩的文件都有一个新的修改日期,而不是对象的实际修改日期。
无论如何,Java 中是否有确定文件最后一次打开和修改与打包相比的实际时间?
谢谢!
像这样:
// when zipping: ZipEntry e = ... e.setTime(file.lastModified()); ... // when unzipping File file = ... file.setLastModified(e.getTime());