赞
踩
// 日期格式字符串
String dateStr = "2023-11-24 16:03:00";
// 转换为时间戳
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = sdf.parse(dateStr);
long timestamp = date.getTime();
System.out.println(timestamp);
// 时间戳
long timestamp = System.currentTimeMillis();
// 转换为日期格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String date = sdf.format(new Date(timestamp));
System.out.println(date);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。