2000-11-10T00:00:00+02:00 的模式是什么
What is pattern for 2000-11-10T00:00:00+02:00
我需要将 2000-11-10T00:00:00+02:00 格式的字符串转换为 LocalDateTime 对象。但是当我将这个字符串解析为 LocalDateTime 时,它给出了错误。
我应该使用哪种模式将字符串解析为 LocalDateTime 对象?
您的字符串包含时区,LocalDateTime
不包含此信息。您需要使用 OffsetDateTime class or ZonedDateTime class. The information on the masks is provided in Javadoc for DateTimeFormatter class.
OffsetDateTime odt = OffsetDateTime.parse( "2000-11-10T00:00:00+02:00" ) ;
我需要将 2000-11-10T00:00:00+02:00 格式的字符串转换为 LocalDateTime 对象。但是当我将这个字符串解析为 LocalDateTime 时,它给出了错误。
我应该使用哪种模式将字符串解析为 LocalDateTime 对象?
您的字符串包含时区,LocalDateTime
不包含此信息。您需要使用 OffsetDateTime class or ZonedDateTime class. The information on the masks is provided in Javadoc for DateTimeFormatter class.
OffsetDateTime odt = OffsetDateTime.parse( "2000-11-10T00:00:00+02:00" ) ;