Uses of Class
java.time.format.DateTimeFormatter
-
Packages that use DateTimeFormatter 软件包 描述 java.time 日期,时间,瞬间和持续时间的主要API。java.time.chrono 除默认ISO之外的日历系统的通用API。java.time.format 提供打印和解析日期和时间的类。 -
-
Uses of DateTimeFormatter in java.time
Methods in java.time with parameters of type DateTimeFormatter 变量和类型 方法 描述 String
LocalDate. format(DateTimeFormatter formatter)
使用指定的格式化程序格式化此日期。String
LocalDateTime. format(DateTimeFormatter formatter)
使用指定的格式化程序格式化此日期时间。String
LocalTime. format(DateTimeFormatter formatter)
这次使用指定的格式化程序格式化。String
MonthDay. format(DateTimeFormatter formatter)
使用指定的格式化程序在本月创建格式。String
OffsetDateTime. format(DateTimeFormatter formatter)
使用指定的格式化程序格式化此日期时间。String
OffsetTime. format(DateTimeFormatter formatter)
这次使用指定的格式化程序格式化。String
Year. format(DateTimeFormatter formatter)
今年使用指定的格式化程序格式化。String
YearMonth. format(DateTimeFormatter formatter)
使用指定的格式化程序格式化今年 - 月。String
ZonedDateTime. format(DateTimeFormatter formatter)
使用指定的格式化程序格式化此日期时间。static LocalDate
LocalDate. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取LocalDate
的实例。static LocalDateTime
LocalDateTime. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取LocalDateTime
的实例。static LocalTime
LocalTime. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取LocalTime
的实例。static MonthDay
MonthDay. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取MonthDay
的实例。static OffsetDateTime
OffsetDateTime. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取OffsetDateTime
的实例。static OffsetTime
OffsetTime. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取OffsetTime
的实例。static Year
Year. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取Year
的实例。static YearMonth
YearMonth. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取YearMonth
的实例。static ZonedDateTime
ZonedDateTime. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取ZonedDateTime
的实例。 -
Uses of DateTimeFormatter in java.time.chrono
Methods in java.time.chrono with parameters of type DateTimeFormatter 变量和类型 方法 描述 default String
ChronoLocalDate. format(DateTimeFormatter formatter)
使用指定的格式化程序格式化此日期。default String
ChronoLocalDateTime. format(DateTimeFormatter formatter)
使用指定的格式化程序格式化此日期时间。default String
ChronoZonedDateTime. format(DateTimeFormatter formatter)
使用指定的格式化程序格式化此日期时间。 -
Uses of DateTimeFormatter in java.time.format
Fields in java.time.format declared as DateTimeFormatter 变量和类型 字段 描述 static DateTimeFormatter
DateTimeFormatter. BASIC_ISO_DATE
ISO日期格式化程序,用于格式化或解析没有偏移的日期,例如“20111203”。static DateTimeFormatter
DateTimeFormatter. ISO_DATE
ISO日期格式化程序,使用偏移量格式化或解析日期(如“2011-12-03”或“2011-12-03 + 01:00”)。static DateTimeFormatter
DateTimeFormatter. ISO_DATE_TIME
类似ISO的日期时格式化程序,使用偏移量和区域(如果可用)格式化或解析日期时间,例如“2011-12-03T10:15:30”,“2011-12-03T10:15:30 + 01 :00'或'2011-12-03T10:15:30 + 01:00 [欧洲/巴黎]'。static DateTimeFormatter
DateTimeFormatter. ISO_INSTANT
ISO即时格式化程序,用于格式化或解析UTC中的瞬间,例如“2011-12-03T10:15:30Z”。static DateTimeFormatter
DateTimeFormatter. ISO_LOCAL_DATE
ISO日期格式化程序,用于格式化或解析没有偏移的日期,例如“2011-12-03”。static DateTimeFormatter
DateTimeFormatter. ISO_LOCAL_DATE_TIME
ISO日期时格式化程序,用于格式化或解析没有偏移的日期时间,例如“2011-12-03T10:15:30”。static DateTimeFormatter
DateTimeFormatter. ISO_LOCAL_TIME
ISO时间格式化程序,用于格式化或解析没有偏移的时间,例如“10:15”或“10:15:30”。static DateTimeFormatter
DateTimeFormatter. ISO_OFFSET_DATE
ISO日期格式化程序,用于格式化或解析具有偏移量的日期,例如“2011-12-03 + 01:00”。static DateTimeFormatter
DateTimeFormatter. ISO_OFFSET_DATE_TIME
ISO日期时格格式器,用于格式化或解析具有偏移的日期时间,例如“2011-12-03T10:15:30 + 01:00”。static DateTimeFormatter
DateTimeFormatter. ISO_OFFSET_TIME
ISO时间格式化程序,使用偏移格式化或解析时间,例如'10:15 + 01:00'或'10:15:30 + 01:00'。static DateTimeFormatter
DateTimeFormatter. ISO_ORDINAL_DATE
ISO日期格式化程序,用于格式化或解析没有偏移的序数日期,例如“2012-337”。static DateTimeFormatter
DateTimeFormatter. ISO_TIME
ISO时间格式化程序,用于格式化或解析时间,如果可用,则为偏移量,例如“10:15”,“10:15:30”或“10:15:30 + 01:00”。static DateTimeFormatter
DateTimeFormatter. ISO_WEEK_DATE
ISO日期格式化程序,用于格式化或解析没有偏移的基于周的日期,例如“2012-W48-6”。static DateTimeFormatter
DateTimeFormatter. ISO_ZONED_DATE_TIME
类似ISO的日期时格格式器,用于格式化或解析具有偏移和区域的日期时间,例如“2011-12-03T10:15:30 + 01:00 [欧洲/巴黎]”。static DateTimeFormatter
DateTimeFormatter. RFC_1123_DATE_TIME
RFC-1123日期时间格式化程序,例如'Tue,2008年6月3日11:05:30 GMT'。Methods in java.time.format that return DateTimeFormatter 变量和类型 方法 描述 DateTimeFormatter
DateTimeFormatter. localizedBy(Locale locale)
返回此格式化程序的副本,其中包含区域设置,日历,区域,小数样式和/或时区的本地化值,它们取代此格式化程序中的值。static DateTimeFormatter
DateTimeFormatter. ofLocalizedDate(FormatStyle dateStyle)
返回ISO年表的特定于语言环境的日期格式。static DateTimeFormatter
DateTimeFormatter. ofLocalizedDateTime(FormatStyle dateTimeStyle)
返回ISO年表的特定于语言环境的日期时间格式化程序。static DateTimeFormatter
DateTimeFormatter. ofLocalizedDateTime(FormatStyle dateStyle, FormatStyle timeStyle)
返回ISO年表的特定于语言环境的日期和时间格式。static DateTimeFormatter
DateTimeFormatter. ofLocalizedTime(FormatStyle timeStyle)
返回ISO年表的特定于语言环境的时间格式。static DateTimeFormatter
DateTimeFormatter. ofPattern(String pattern)
使用指定的模式创建格式化程序。static DateTimeFormatter
DateTimeFormatter. ofPattern(String pattern, Locale locale)
使用指定的模式和语言环境创建格式化程序。DateTimeFormatter
DateTimeFormatterBuilder. toFormatter()
通过使用默认语言环境创建DateTimeFormatter
来完成此构建器。DateTimeFormatter
DateTimeFormatterBuilder. toFormatter(Locale locale)
通过使用指定的语言环境创建DateTimeFormatter
来完成此构建器。DateTimeFormatter
DateTimeFormatter. withChronology(Chronology chrono)
返回此格式化程序的副本,其中包含新的覆盖时间顺序。DateTimeFormatter
DateTimeFormatter. withDecimalStyle(DecimalStyle decimalStyle)
使用新的DecimalStyle返回此formatter的副本。DateTimeFormatter
DateTimeFormatter. withLocale(Locale locale)
返回具有新语言环境的此formatter的副本。DateTimeFormatter
DateTimeFormatter. withResolverFields(TemporalField... resolverFields)
返回此格式化程序的副本,其中包含一组新的解析程序字段。DateTimeFormatter
DateTimeFormatter. withResolverFields(Set<TemporalField> resolverFields)
返回此格式化程序的副本,其中包含一组新的解析程序字段。DateTimeFormatter
DateTimeFormatter. withResolverStyle(ResolverStyle resolverStyle)
使用新的解析程序样式返回此formatter的副本。DateTimeFormatter
DateTimeFormatter. withZone(ZoneId zone)
使用新的覆盖区域返回此格式化程序的副本。Methods in java.time.format with parameters of type DateTimeFormatter 变量和类型 方法 描述 DateTimeFormatterBuilder
DateTimeFormatterBuilder. append(DateTimeFormatter formatter)
将格式化程序的所有元素追加到构建器。DateTimeFormatterBuilder
DateTimeFormatterBuilder. appendOptional(DateTimeFormatter formatter)
将格式化程序附加到构建器,可以选择格式化/解析。
-