回答編集履歴

1

クラス名タイプミス\(Foematterって…\)

2015/12/04 01:20

投稿

swordone
swordone

スコア20651

test CHANGED
@@ -6,10 +6,10 @@
6
6
 
7
7
  LocalDateTime date = LocalDateTime.parse("Mon, 30 Nov 2015 06:00:00 +0900",
8
8
 
9
- DateTimeFoematter.RFC_1123_DATE_TIME);
9
+ DateTimeFormatter.RFC_1123_DATE_TIME);
10
10
 
11
11
  //ISODate形式に変換
12
12
 
13
- String isoDate = date.format(DateTimeFoematter.ISO_DATE);
13
+ String isoDate = date.format(DateTimeFormatter.ISO_DATE);
14
14
 
15
15
  ```