我可以通过这种方式将java.util.Date
转换为java.time.Instant
(Java 8及更高版本):
Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY, 8);
cal.set(Calendar.MINUTE, 30);
Date startTime = cal.getTime();
Instant i = startTime.toInstant();
任何人都可以告诉我有关特定日期及时间的即时转换信息。时间格式?即2015-06-02 8:30:00
我已经通过api但找不到满意的答案。
答案 0 :(得分:143)
如果您想将Instant
转换为Date
:
Date myDate = Date.from(instant);
然后您可以使用SimpleDateFormat
作为问题的格式部分:
SimpleDateFormat formatter = new SimpleDateFormat("dd MM yyyy HH:mm:ss");
String formattedDate = formatter.format(myDate);
答案 1 :(得分:10)
瞬间是它所说的:一个特定的时刻 - 它没有日期和时间的概念(纽约和东京的时间在给定时刻不一样)。
要将其打印为日期/时间,首先需要确定要使用的时区。例如:
System.out.println(LocalDateTime.ofInstant(i, ZoneOffset.UTC));
这将以iso格式打印日期/时间:2015-06-02T10:15:02.325
如果您想要不同的格式,可以使用格式化程序:
LocalDateTime datetime = LocalDateTime.ofInstant(i, ZoneOffset.UTC);
String formatted = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss").format(datetime);
System.out.println(formatted);
答案 2 :(得分:1)
尝试解析和格式化
举个例子 的解析强>
String input = ...;
try {
DateTimeFormatter formatter =
DateTimeFormatter.ofPattern("MMM d yyyy");
LocalDate date = LocalDate.parse(input, formatter);
System.out.printf("%s%n", date);
}
catch (DateTimeParseException exc) {
System.out.printf("%s is not parsable!%n", input);
throw exc; // Rethrow the exception.
}
<强>格式强>
ZoneId leavingZone = ...;
ZonedDateTime departure = ...;
try {
DateTimeFormatter format = DateTimeFormatter.ofPattern("MMM d yyyy hh:mm a");
String out = departure.format(format);
System.out.printf("LEAVING: %s (%s)%n", out, leavingZone);
}
catch (DateTimeException exc) {
System.out.printf("%s can't be formatted!%n", departure);
throw exc;
}
此示例的输出(打印到达和离开时间)如下:
LEAVING: Jul 20 2013 07:30 PM (America/Los_Angeles)
ARRIVING: Jul 21 2013 10:20 PM (Asia/Tokyo)
有关详细信息,请查看此页面 - https://docs.oracle.com/javase/tutorial/datetime/iso/format.html
答案 3 :(得分:-3)
Instant i = Instant.ofEpochSecond(cal.getTime);