如何在java中获取文件的创建日期和时间?

时间:2011-11-04 11:29:57

标签: java file

  

可能重复:
  How to discover a File's creation time with Java?

我想在java中获取文件的创建日期和时间。 我该怎么办?

提前致谢!!!!

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

您有 cmd / c dir fileName 命令执行此操作:

尝试使用

Runtime runtime = Runtime.getRuntime();

Process output = runtime.exec("cmd /c dir "+fname);

处理运行时的输出并获得所需的标记。