赞
踩
- public class Test2 {
- public static void main(String args[]){
- //将时间戳转换为时间
- SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- long lt = 1648869142403L;
- Date date1 = new Date(lt);
- String res = simpleDateFormat.format(date1);
- System.out.println("时间戳转时间结果:" + res);
-
- //时间转为时间戳
- try{
- Date date2 = simpleDateFormat.parse("2022-03-03 17:17:22");
- long ts = date2.getTime();
- System.out.println("时间转时间戳结果:" + ts);
- }catch (ParseException e){
- e.printStackTrace();
- }
- }
- }
结果输出:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。