一、什么是时间戳?
时间戳(timestamp)是指格林威治时间1970年01月01日00时00分00秒起至现在的总秒数。在编程中,时间戳通常指从格林威治时间1970年01月01日00时00分00秒起到当前时间的总秒数。
在Java中,时间戳是用毫秒表示的,即格林威治时间1970年01月01日00时00分00秒起至现在的总毫秒数。Java中获取当前时间的时间戳的方法为:
long timestamp = System.currentTimeMillis();
二、将时间戳转换成日期的方法
在Java中,将时间戳转换成日期有多种方法,其中比较简单的方法是使用Java提供的DateFormat类和SimpleDateFormat类。
三、使用DateFormat类将时间戳转换成日期
DateFormat是一个抽象类,它的子类SimpleDateFormat可以将日期格式化成字符串,也可以将字符串解析成日期。将时间戳转换成日期的过程可以分为两步:
1、创建一个DateFormat对象
2、通过DateFormat对象的format方法将时间戳转换成日期字符串
//时间戳 long timestamp = 1617669924000L; //创建DateFormat对象 DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //通过DateFormat对象的format方法将时间戳转换成日期字符串 String date = formatter.format(new Date(timestamp)); System.out.println(date); //输出:2021-04-06 22:05:24
四、使用SimpleDateFormat类将时间戳转换成日期
SimpleDateFormat是DateFormat的子类,它除了具备DateFormat的功能外,还可以自定义日期格式。将时间戳转换成日期的过程可以分为两步:
1、创建一个SimpleDateFormat对象,设置日期格式
2、通过SimpleDateFormat对象的format方法将时间戳转换成日期字符串
//时间戳 long timestamp = 1617669924000L; //创建SimpleDateFormat对象,设置日期格式 SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss"); //通过SimpleDateFormat对象的format方法将时间戳转换成日期字符串 String date = sdf.format(new Date(timestamp)); System.out.println(date); //输出:2021年04月06日 22:05:24
五、注意事项
在使用DateFormat类和SimpleDateFormat类将时间戳转换成日期时,需要注意以下几点:
1、时间戳是long类型,需要保证其精度,不要使用int类型。
2、DateFormat和SimpleDateFormat是线程不安全的,如果多个线程同时访问可能会导致错误,请使用ThreadLocal或加锁来保证线程安全。
3、日期格式中的字母需要按照规定的含义进行填写,如yyyy代表年份,MM代表月份,dd代表日份,HH代表小时,mm代表分钟,ss代表秒钟。
六、总结
在Java中将时间戳转换成日期是比较常见的需求,使用DateFormat类和SimpleDateFormat类可以很方便地完成这个任务。在使用过程中需要注意线程安全和日期格式的规范。