- public static void main(String[] args) {
- DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- File file = new File("d:/test.txt");
- // 毫秒数
- long modifiedTime = file.lastModified();
- System.out.println(modifiedTime);
- // 通过毫秒数构造日期 即可将毫秒数转换为日期
- Date d = new Date(modifiedTime);
- System.out.println(format.format(d));
- // Set the last modified time
- long newModifiedTime = System.currentTimeMillis();
- // 设置最后一次修改的时间
- boolean success = file.setLastModified(newModifiedTime);
- if (!success) {
- System.out.println("change failed");
- } else {
- System.out.println(format.format(new Date(file.lastModified())));
- }
- }
复制代码 |