os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
information:
通过这张截图可以看到 测试文件夹 的修改日期。
code:
package jizuiku0; import java.io.File; import java.text.SimpleDateFormat; import java.util.Date; /* * @version V17.09 */ public class FileTimeDemo { public static void main(String[] args) { String pathname = "C:\\Users\\Administrator\\Desktop\\JavaSE8\\测试文件夹"; File file = new File(pathname); long msValue = file.lastModified();//获取的是毫秒值 Date d = new Date(msValue);//这个不同时区,时间是有差值的 // 拆解的格式-按照win7的格式 SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd HH:mm"); System.out.println("修改时间:"+sdf.format(d)); } }
result:
Java优秀,值得学习。
学习资源:itcast和itheima视频库。如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。
时间: 2024-10-27 00:32:44