java.time.ZonedDateTime 类



介绍

java.time.ZonedDateTime 类表示 ISO-8601 日历系统中的带时区的日期时间,例如 2007-12-03T10:15:30+01:00 Europe/Paris。

类声明

以下是 java.time.ZonedDateTime 类的声明:

public final class ZonedDateTime
   extends Object
      implements Temporal, ChronoZonedDateTime<LocalDate>, Serializable

类方法

序号 方法及描述
1 boolean equals(Object obj)

检查此日期时间是否等于另一个日期时间。

2 String format(DateTimeFormatter formatter)

使用指定的格式化程序格式化此日期时间。

3 static ZonedDateTime from(TemporalAccessor temporal)

从时间对象获取 ZonedDateTime 实例。

4 int get(TemporalField field)

获取此日期时间中指定字段的值,作为 int。

5 int getDayOfMonth()

获取月份中的日期字段。

6 DayOfWeek getDayOfWeek()

获取一周中的日期字段,这是一个 DayOfWeek 枚举。

7 int getDayOfYear()

获取一年中的日期字段。

8 int getHour()

获取一天中的小时字段。

9 long getLong(TemporalField field)

获取此日期时间中指定字段的值,作为 long。

10 Month getMinute()

获取小时中的分钟字段。

11 Month getMonth()

使用 Month 枚举获取一年中的月份字段。

12 int getMonthValue()

获取一年中的月份字段,从 1 到 12。

13 int getNano()

获取秒中的纳秒字段。

14 ZoneOffset getOffset()

获取时区偏移量,例如 '+01:00'。

15 int getSecond()

获取分钟中的秒字段。

16 int getYear()

获取年份字段。

17 ZoneId getZone()

获取时区,例如 'Europe/Paris'。

18 int hashCode()

此日期时间的哈希码。

19 boolean isSupported(TemporalField field)

检查是否支持指定的字段。

20 boolean isSupported(TemporalUnit unit)

检查是否支持指定的单位。

21 ZonedDateTime minus(long amountToSubtract, TemporalUnit unit)

返回此日期时间的副本,减去指定量。

22 ZonedDateTime minus(TemporalAmount amountToSubtract)

返回此日期时间的副本,减去指定量。

23 ZonedDateTime minusDays(long daysToSubtract)

返回此 ZonedDateTime 的副本,减去指定的天数。

24 ZonedDateTime minusHours(long hoursToSubtract)

返回此 ZonedDateTime 的副本,减去指定的小时数。

25 ZonedDateTime minusMinutes(long minutesToSubtract)

返回此 ZonedDateTime 的副本,减去指定的分钟数。

26 ZonedDateTime minusMonths(long monthsToSubtract)

返回此 ZonedDateTime 的副本,减去指定的月数。

27 ZonedDateTime minusNanos(long nanos)

返回此 ZonedDateTime 的副本,减去指定的纳秒数。

28 ZonedDateTime minusSeconds(long seconds)

返回此 ZonedDateTime 的副本,减去指定的秒数。

29 ZonedDateTime minusWeeks(long weeksToSubtract)

返回此 ZonedDateTime 的副本,减去指定的周数。

30 ZonedDateTime minusYears(long yearsToSubtract)

返回此 ZonedDateTime 的副本,减去指定的年数。

31 static ZonedDateTime now()

从系统时钟的默认时区获取当前日期时间。

32 static ZonedDateTime now(Clock clock)

从指定的时钟获取当前日期时间。

33 static ZonedDateTime now(ZoneId zone)

从系统时钟的指定时区获取当前日期时间。

34 static ZonedDateTime of(int year, int month, int dayOfMonth, int hour, int minute, int second, int nanoOfSecond, ZoneId zone)

从年、月、日、时、分、秒、纳秒和时区获取 ZonedDateTime 实例。

35 static ZonedDateTime of(LocalDate date, LocalTime time, ZoneId zone)

从日期和时间获取 ZonedDateTime 实例。

36 static ZonedDateTime of(LocalDateTime date, ZoneId zone)

从本地日期时间获取 ZonedDateTime 实例。

37 static ZonedDateTime ofInstant(Instant instant, ZoneId zone)

从 Instant 和时区 ID 获取 ZonedDateTime 实例。

38 static ZonedDateTime ofInstant(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone)

从结合本地日期时间和偏移量形成的 Instant 获取 ZonedDateTime 实例。

39 static ZonedDateTime ofLocal(LocalDateTime localDateTime, ZoneId zone, ZoneOffset preferredOffset)

如果可能,从本地日期时间使用首选偏移量获取 ZonedDateTime 实例。

40 static ZonedDateTime ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone)

严格验证本地日期时间、偏移量和时区 ID 组合,获取 ZonedDateTime 实例。

41 static ZonedDateTime parse(CharSequence text)

从文本字符串(例如 2007-12-03T10:15:30+01:00[Europe/Paris])获取 ZonedDateTime 实例。

42 static ZonedDateTime parse(CharSequence text, DateTimeFormatter formatter)

使用特定格式化程序从文本字符串获取 ZonedDateTime 实例。

43 ZonedDateTime plus(long amountToAdd, TemporalUnit unit)

返回此日期时间的副本,加上指定量。

44 ZonedDateTime plus(TemporalAmount amountToAdd)

返回此日期时间的副本,加上指定量。

45 ZonedDateTime plusDays(long daysToAdd)

返回此 ZonedDateTime 的副本,加上指定的天数。

46 ZonedDateTime plusHours(long hoursToAdd)

返回此 ZonedDateTime 的副本,加上指定的小时数。

47 ZonedDateTime plusMinutes(long minutesToAdd)

返回此 ZonedDateTime 的副本,加上指定的分钟数。

48 ZonedDateTime plusMonths(long monthsToAdd)

返回此 ZonedDateTime 的副本,加上指定的月数。

49 ZonedDateTime plusNanos(long nanos)

返回此 ZonedDateTime 的副本,加上指定的纳秒数。

50 ZonedDateTime plusSeconds(long seconds)

返回此 ZonedDateTime 的副本,加上指定的秒数。

51 ZonedDateTime plusWeeks(long weeksToAdd)

返回此 ZonedDateTime 的副本,加上指定的周数。

52 ZonedDateTime plusYears(long yearsToAdd)

返回此 ZonedDateTime 的副本,加上指定的年数。

53 <R> R query(TemporalQuery<R> query)

使用指定的查询查询此日期时间。

54 ValueRange range(TemporalField field)

获取指定字段的有效值范围。

55 LocalDate toLocalDate()

获取此日期时间的 LocalDate 部分。

56 LocalTime toLocalTime()

获取此日期时间的 LocalTime 部分。

57 OffsetDateTime toOffsetDateTime()

将此日期时间转换为 OffsetDateTime。

58 String toString()

输出此日期作为字符串,例如 2007-12-03T10:15:30+01:00[Europe/Paris]。

59 ZonedDateTime truncatedTo(TemporalUnit unit)

返回此 ZonedDateTime 的副本,时间被截断。

60 long until(Temporal endExclusive, TemporalUnit unit)

根据指定的单位计算到另一个日期时间的时间量。

61 ZonedDateTime with(TemporalAdjuster adjuster)

返回此日期时间的调整副本。

62 ZonedDateTime with(TemporalField field, long newValue)

返回此日期时间的副本,其中指定字段设置为新值。

63 ZonedDateTime withDayOfMonth(int dayOfMonth)

返回此 ZonedDateTime 的副本,其中月份中的日期已更改。

64 ZonedDateTime withDayOfYear(int dayOfYear)

返回此 ZonedDateTime 的副本,其中一年中的日期已更改。

65 ZonedDateTime withEarlierOffsetAtOverlap()

返回此日期时间的副本,将时区偏移量更改为本地时间线重叠处两个有效偏移量中的较早者。

66 ZonedDateTime withFixedOffsetZone()

返回此日期时间的副本,其中时区 ID 设置为偏移量。

67 ZonedDateTime withHour(int hour)

返回此 ZonedDateTime 的副本,其中一天中的小时已更改。

68 ZonedDateTime withLaterOffsetAtOverlap()

返回此日期时间的副本,将时区偏移量更改为本地时间线重叠处两个有效偏移量中的较晚者。

69 ZonedDateTime withMinute(int minute)

返回此 ZonedDateTime 的副本,其中小时中的分钟已更改。

70 ZonedDateTime withMonth(int month)

返回此 ZonedDateTime 的副本,其中一年中的月份已更改。

71 ZonedDateTime withNano(int nanoOfSecond)

返回此 ZonedDateTime 的副本,其中秒中的纳秒已更改。

72 ZonedDateTime withSecond(int second)

返回此 ZonedDateTime 的副本,其中分钟中的秒已更改。

73 ZonedDateTime withYear(int year)

返回此 ZonedDateTime 的副本,其中年份已更改。

74 ZonedDateTime withZoneSameInstant(ZoneId zone)

返回此日期时间的副本,使用不同的时区,保留时间点。

75 ZonedDateTime withZoneSameLocal(ZoneId zone)

返回此日期时间的副本,使用不同的时区,如果可能,保留本地日期时间。

继承的方法

此类继承自以下类:

  • Java.lang.Object
广告