java IO流——获取指定文件的最后修改时间,精确到时分秒

  • Post author:
  • Post category:java


package com.oracle.cl;

import java.io.File;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Format_study
{

	public static void main(String[] args)
	{
		File file=new File("d:\\hello1\\hello2\\hello3\\hello.txt");
		Date d=new Date(file.lastModified());
		DateFormat df=new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒");
	    String format = df.format(d);
		System.out.println(format);
	}
	
}

运行结果:

在这里插入图片描述



版权声明:本文为tcbdbd原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。