Uses of Class
java.time.format.DateTimeFormatter
-
Packages that use DateTimeFormatter 软件包 描述 java.time 日期,时间,瞬间和持续时间的主要API。java.time.chrono 除默认ISO之外的日历系统的通用API。java.time.format 提供打印和解析日期和时间的类。javafx.util.converter 此包用于JavaFX的标准字符串转换器。 -
-
Uses of DateTimeFormatter in java.time
Methods in java.time with parameters of type DateTimeFormatter Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 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 Modifier and Type Field 描述 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 [Europe / Paris]”。static DateTimeFormatter
DateTimeFormatter. RFC_1123_DATE_TIME
RFC-1123日期格式化程序,如“星期二,2008年6月3日11:05:30 GMT”。Methods in java.time.format that return DateTimeFormatter Modifier and Type 方法 描述 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返回此格式化程序的副本。DateTimeFormatter
DateTimeFormatter. withLocale(Locale locale)
使用新的语言环境返回此格式化程序的副本。DateTimeFormatter
DateTimeFormatter. withResolverFields(TemporalField... resolverFields)
使用一组新的解析器字段返回此格式化程序的副本。DateTimeFormatter
DateTimeFormatter. withResolverFields(Set<TemporalField> resolverFields)
使用一组新的解析器字段返回此格式化程序的副本。DateTimeFormatter
DateTimeFormatter. withResolverStyle(ResolverStyle resolverStyle)
使用新的解析器样式返回此格式化程序的副本。DateTimeFormatter
DateTimeFormatter. withZone(ZoneId zone)
使用新的覆盖区域返回此格式化程序的副本。Methods in java.time.format with parameters of type DateTimeFormatter Modifier and Type 方法 描述 DateTimeFormatterBuilder
DateTimeFormatterBuilder. append(DateTimeFormatter formatter)
将格式化程序的所有元素附加到构建器。DateTimeFormatterBuilder
DateTimeFormatterBuilder. appendOptional(DateTimeFormatter formatter)
将一个格式化程序附加到构建器,该构建器可以格式化/解析。 -
Uses of DateTimeFormatter in javafx.util.converter
Constructors in javafx.util.converter with parameters of type DateTimeFormatter Constructor 描述 LocalDateStringConverter(DateTimeFormatter formatter, DateTimeFormatter parser)
使用提供的格式化程序和解析器为LocalDate
值创建{#link StringConverter}。LocalDateTimeStringConverter(DateTimeFormatter formatter, DateTimeFormatter parser)
使用提供的格式化程序和解析器为LocalDateTime
创建一个270601657213854值。LocalTimeStringConverter(DateTimeFormatter formatter, DateTimeFormatter parser)
-