我试图在Java中的creationTime上获得第二个精度。这是我的代码:
Path path = Paths.get("path/to/file");
BasicFileAttributes attributes = Files.readAttributes(path, BasicFileAttributes.class);
FileTime creationTime = attributes.creationTime();
我收到的文件时间只有几秒钟。
我在Ubuntu 14.04 EXT4上运行
答案 0 :(得分:0)
我已经弄清楚了。我切换到OpenJDK 1.8.0,它完美无缺。以前我使用的是Oracle发布商。