获取当前时间戳code
//方法 一 long time1 = System.currentTimeMillis() //方法 二 long time2 = Calendar.getInstance().getTimeInMillis(); //方法 三 long time3 = new Date().getTime();
获取当前时间orm
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
String date = df.format(new Date());
System.out.println("当前时间:"+date);
时间戳转换为时间get
//date是yyyy-MM-dd HH:mm:ss格式的String类型的时间
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date time= simpleDateFormat.parse(date);
long timeStamp= time.getTime();
System.out.println(timeStamp);
时间转换为时间戳form
//s是String类型的时间戳
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
long timeStamp= new Long(s);
Date date = new Date(timeStamp);
String time= simpleDateFormat.format(date);
System.out.println(time);
本文详细介绍了在Java中获取当前时间戳的三种方法(System.currentTimeMillis(), Calendar.getInstance().getTimeInMillis(), Date.getTime()),并展示了时间戳与时间字符串之间的转换过程。通过SimpleDateFormat进行日期格式化和解析,涵盖了从时间戳到时间字符串,以及时间字符串到时间戳的实用技巧。
1224

被折叠的 条评论
为什么被折叠?



