日期转时间戳;
public void a12(){
// 日期格式字符串
String dateStr = "2023-11-30 16:03:00";
// 转换为时间戳
Date date = null;
SimpleDateFormat s = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");
try{
date = s.parse(dateStr);
}catch (ParseException e) {
e.printStackTrace();
}
long t= date.getTime();
System.out.println(t);
}
}
运行结果
时间戳转日期;
public void a13(){
// 时间戳
long timestamp = System.currentTimeMillis();
// 转换为日期格式
SimpleDateFormat s = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");
String date = s .format(new Date(timestamp));
System .out .println(date);
}
}
运行结果