java.time.LocalDateTime 类



介绍

java.time.LocalDateTime 类表示 ISO-8601 日历系统中不含时区的日期时间,例如 2007-12-03T10:15:30。

类声明

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

public final class LocalDateTime
   extends Object
      implements Temporal, TemporalAdjuster, ChronoLocalDateTime, Serializable

字段

以下是 java.time.LocalDateTime 类的字段:

  • static LocalDateTime MAX - 支持的最大 LocalDateTime,'+999999999-12-31T23:59:59.999999999'。

  • static LocalDateTime MIN - 支持的最小 LocalDateTime,'-999999999-01-01T00:00:00'。

类方法

序号 方法及描述
1 Temporal adjustInto(Temporal temporal)

调整指定的 Temporal 对象,使其具有与此对象相同的日期和时间。

2 OffsetDateTime atOffset(ZoneOffset offset)

将此日期时间与偏移时间组合以创建 OffsetDateTime。

3 ZonedDateTime atZone(ZoneId zone)

将此日期时间与时区组合以创建 ZonedDateTime。

4 int compareTo(ChronoLocalDateTime other)

将此日期时间与另一个日期时间进行比较。

5 boolean equals(Object obj)

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

6 String format(DateTimeFormatter formatter)

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

7 static LocalDateTime from(TemporalAccessor temporal)

从 Temporal 对象获取 LocalDateTime 实例。

8 int get(TemporalField field)

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

9 int getDayOfMonth()

获取月份中的第几天字段。

10 DayOfWeek getDayOfWeek()

获取星期几字段,这是一个 DayOfWeek 枚举。

11 int getDayOfYear()

获取年中第几天字段。

12 int getHour()

获取一天中的小时字段。

13 long getLong(TemporalField field)

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

14 Month getMinute()

获取小时中的分钟字段。

15 Month getMonth()

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

16 int getMonthValue()

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

17 int getNano()

获取秒中的纳秒字段。

18 int getSecond()

获取分钟中的秒字段。

19 int getYear()

获取年份字段。

20 int hashCode()

此日期时间的哈希码。

21 boolean isAfter(ChronoLocalDateTime other)

检查此日期时间是否在指定日期时间之后。

22 boolean isBefore(ChronoLocalDateTime other)

检查此日期时间是否在指定日期时间之前。

23 boolean isEqual(ChronoLocalDateTime other)

检查此日期时间是否等于指定日期时间。

24 boolean isSupported(TemporalField field)

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

25 boolean isSupported(TemporalUnit unit)

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

26 LocalDateTime minus(long amountToSubtract, TemporalUnit unit)

返回此日期时间的一个副本,其中减去了指定数量。

27 LocalDateTime minus(TemporalAmount amountToSubtract)

返回此日期时间的一个副本,其中减去了指定数量。

28 LocalDateTime minusDays(long daysToSubtract)

返回此 LocalDateTime 的一个副本,其中减去了指定的天数。

29 LocalDateTime minusHours(long hoursToSubtract)

返回此 LocalDateTime 的一个副本,其中减去了指定的小时数。

30 LocalDateTime minusMinutes(long minutesToSubtract)

返回此 LocalDateTime 的一个副本,其中减去了指定的分钟数。

31 LocalDateTime minusMonths(long monthsToSubtract)

返回此 LocalDateTime 的一个副本,其中减去了指定的月份数。

32 LocalDateTime minusNanos(long nanos)

返回此 LocalDateTime 的一个副本,其中减去了指定的纳秒数。

33 LocalDateTime minusSeconds(long seconds)

返回此 LocalDateTime 的一个副本,其中减去了指定的秒数。

34 LocalDateTime minusWeeks(long weeksToSubtract)

返回此 LocalDateTime 的一个副本,其中减去了指定的星期数。

35 LocalDateTime minusYears(long yearsToSubtract)

返回此 LocalDateTime 的一个副本,其中减去了指定的年数。

36 static LocalDateTime now()

从系统时钟获取当前日期时间,以默认时区为准。

37 static LocalDateTime now(Clock clock)

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

38 static LocalDateTime now(ZoneId zone)

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

39 static LocalDateTime of(int year, int month, int dayOfMonth, int hour, int minute)

从年、月、日、时、分获取 LocalDateTime 实例,并将秒和纳秒设置为零。

40 static LocalDateTime of(int year, int month, int dayOfMonth, int hour, int minute, int second)

从年、月、日、时、分、秒获取 LocalDateTime 实例,并将纳秒设置为零。

41 static LocalDateTime of(int year, int month, int dayOfMonth, int hour, int minute, int second, int nanoOfSecond)

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

42 static LocalDateTime of(int year, Month month, int dayOfMonth, int hour, int minute, int second)

从年、月、日、时、分、秒获取 LocalDateTime 实例,并将纳秒设置为零。

43 static LocalDateTime of(int year, Month month, int dayOfMonth, int hour, int minute, int second, int nanoOfSecond)

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

44 static LocalDateTime of(LocalDate date, LocalTime time)

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

45 static LocalDateTime ofEpochSecond(long epochSecond, int nanoOfSecond, ZoneOffset offset)

从 1970-01-01T00:00:00Z 的纪元获取 LocalDateTime 实例。

46 static LocalDateTime ofInstant(Instant instant, ZoneId zone)

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

47 static LocalDateTime parse(CharSequence text)

从文本字符串(例如 2007-12-03T10:15:30)获取 LocalDateTime 实例。

48 static LocalDateTime parse(CharSequence text, DateTimeFormatter formatter)

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

49 LocalDateTime plus(long amountToAdd, TemporalUnit unit)

返回此日期时间的一个副本,其中添加了指定数量。

50 LocalDateTime plus(TemporalAmount amountToAdd)

返回此日期时间的一个副本,其中添加了指定数量。

51 LocalDateTime plusDays(long daysToAdd)

返回此 LocalDateTime 的一个副本,其中添加了指定的天数。

52 LocalDateTime plusHours(long hoursToAdd)

返回此 LocalDateTime 的一个副本,其中添加了指定的小时数。

53 LocalDateTime plusMinutes(long minutesToAdd)

返回此 LocalDateTime 的一个副本,其中添加了指定的分钟数。

54 LocalDateTime plusMonths(long monthsToAdd)

返回此 LocalDateTime 的一个副本,其中添加了指定的月份数。

55 LocalDateTime plusNanos(long nanos)

返回此 LocalDateTime 的一个副本,其中添加了指定的纳秒数。

56 LocalDateTime plusSeconds(long seconds)

返回此 LocalDateTime 的一个副本,其中添加了指定的秒数。

57 LocalDateTime plusWeeks(long weeksToAdd)

返回此 LocalDateTime 的一个副本,其中添加了指定的星期数。

58 LocalDateTime plusYears(long yearsToAdd)

返回此 LocalDateTime 的一个副本,其中添加了指定的年数。

59 <R> R query(TemporalQuery<R> query)

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

60 ValueRange range(TemporalField field)

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

61 LocalDate toLocalDate()

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

62 LocalTime toLocalTime()

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

63 String toString()

输出此日期作为字符串,例如 2007-12-03T10:15:30。

64 LocalDateTime truncatedTo(TemporalUnit unit)

返回此 LocalDateTime 的一个副本,其中时间被截断。

65 long until(Temporal endExclusive, TemporalUnit unit)

计算以指定单位为准到另一个日期时间的时间量。

66 LocalDateTime with(TemporalAdjuster adjuster)

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

67 LocalDateTime with(TemporalField field, long newValue)

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

68 LocalDateTime withDayOfMonth(int dayOfMonth)

返回此 LocalDateTime 的一个副本,其中更改了月份中的第几天。

69 LocalDateTime withDayOfYear(int dayOfYear)

返回此 LocalDateTime 的一个副本,其中更改了年中第几天。

70 LocalDateTime withHour(int hour)

返回此 LocalDateTime 的一个副本,其中更改了一天中的小时。

71 LocalDateTime withMinute(int minute)

返回此 LocalDateTime 的一个副本,其中更改了小时中的分钟。

72 LocalDateTime withMonth(int month)

返回此 LocalDateTime 的一个副本,其中更改了一年中的月份。

73 LocalDateTime withNano(int nanoOfSecond)

返回此 LocalDateTime 的一个副本,其中更改了秒中的纳秒。

74 LocalDateTime withSecond(int second)

返回此 LocalDateTime 的一个副本,其中更改了分钟中的秒。

75 LocalDateTime withYear(int year)

返回此 LocalDateTime 的一个副本,其中更改了年份。

继承的方法

此类继承以下类的 method:

  • Java.lang.Object
广告