获取当前时间(年月日时分秒)
Date d = new Date();
SimpleDateFormat sbf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
((d));
或
(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
2022-12-12 08:56:42
获取当前时间戳 到毫秒
(());
1588055609783
时间戳换成年月日
Date date = new Date(());
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String format = (date);
(format);
1588055609783 --> 2020-04-28 02:33:29
年月日换成时间戳
leDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = ("2020-04-28 02:33:29");
long ts = ();
(ts);
String res = (ts); // 转化为字符串
(res);
1588012409000