|
@@ -65,6 +65,7 @@ public class test {
|
|
|
System.out.println("加一时"+ newDate);
|
|
|
newDate.setTime(time + 1000*60*60*24);*/
|
|
|
|
|
|
+/*
|
|
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
@@ -74,8 +75,15 @@ public class test {
|
|
|
System.out.println(sdf.format(date));
|
|
|
System.out.println(format.parse(sdf.format(date)));
|
|
|
|
|
|
+*/
|
|
|
|
|
|
|
|
|
+ long timeStamp = 1691132713 * 1000L; // 时间戳,单位:毫秒
|
|
|
+ Date date = new Date(timeStamp);
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
+ String formatTime = sdf.format(date);
|
|
|
+ System.out.println(formatTime);
|
|
|
+
|
|
|
|
|
|
}
|
|
|
|