第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

java.time.format.DateTimeParseException:

java.time.format.DateTimeParseException:

躍然一笑 2022-09-07 16:56:55
我在將字符串格式化為ZonedDateTime時(shí)遇到問題。我的客戶希望日期采用 ddMMyyhhmmss 等格式,沒有分隔符或類似的東西。這是我到目前為止所做的import java.time.format.DateTimeFormatter;import java.time.LocalDateTime;import java.time.ZoneId;import java.time.ZonedDateTime;public class MyClass {    public static void main(String args[]) {            DateTimeFormatter formatter = DateTimeFormatter.ofPattern("ddMMyyyyhhmmss");            String test = formatter            .format(ZonedDateTime.now()).toString();            System.out.println(test);            ZonedDateTime a = ZonedDateTime.parse(test,formatter);            System.out.println(a.toString());    }}當(dāng)它正確生成字符串時(shí),錯(cuò)誤發(fā)生在創(chuàng)建 LocalDateTime 變量的解析過程中28032019100707Exception in thread "main" java.time.format.DateTimeParseException: Text '28032019100707' could not be parsed: Unable to obtain ZonedDateTime from TemporalAccessor: {MilliOfSecond=0, MinuteOfHour=7, HourOfAmPm=10, NanoOfSecond=0, MicroOfSecond=0, SecondOfMinute=7},ISO resolved to 2019-03-28 of type java.time.format.Parsed    at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1920)    at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1855)    at java.time.ZonedDateTime.parse(ZonedDateTime.java:597)    at MyClass.main(MyClass.java:14)在SO上搜索,我看到同一問題的一些答案建議使用LocalDateTime類作為中間類,然后解析為ZonedDateTime,但它仍然不起作用,拋出了相同的錯(cuò)誤。我還嘗試使用此過程更改初始化DateTimeFormatter的方式DateTimeFormatter formatter = new DateTimeFormatterBuilder().appendPattern("ddMMyyyyhhmmss")                          .toFormatter()                          .withZone(ZoneId.systemDefault());但它仍然不起作用。我知道我肯定錯(cuò)過了一些愚蠢的東西,但我看不到什么。任何人都可以給我指出正確的方向嗎?
查看完整描述

3 回答

?
慕后森

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超5個(gè)贊

你想要:

  String test = ZonedDateTime.now().format(formatter);


查看完整回答
反對 回復(fù) 2022-09-07
?
qq_花開花謝_0

TA貢獻(xiàn)1835條經(jīng)驗(yàn) 獲得超7個(gè)贊

ddMMyyyyhhmmss不包含任何區(qū)域信息,它不是,它應(yīng)該是 。ZonedDateTimeLocalDateTime



查看完整回答
反對 回復(fù) 2022-09-07
?
明月笑刀無情

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超4個(gè)贊

在您解析的字符串中,沒有關(guān)于時(shí)區(qū)的信息 - 那么格式化程序應(yīng)該如何知道如何轉(zhuǎn)換為ZonedDateTime?

您需要在字符串中包含時(shí)區(qū)信息,或者使用另一個(gè)對象將其解析為沒有時(shí)區(qū)信息,然后將其傳輸?shù)剿璧膮^(qū)域中。


查看完整回答
反對 回復(fù) 2022-09-07
  • 3 回答
  • 0 關(guān)注
  • 452 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號