@@ -10,15 +10,15 @@ public static void main(String[] args) {
10
10
SimpleDateFormat sdf1 = new SimpleDateFormat ("MM.d.yyyy HH:mm:ss" );
11
11
System .out .println (sdf1 .format (date ));
12
12
13
- //÷åòâåðã 23 ÿíâàðÿ 2020 22:17:54
13
+ //Thursday 23 January 2020 22:17:54
14
14
SimpleDateFormat sdf2 = new SimpleDateFormat ("EEEEE DD MMMMM yyyy HH:mm:ss" );
15
15
System .out .println (sdf2 .format (date ));
16
16
17
- //×ò , 23 ÿíâ 2020 22:20:46 MSK
17
+ //Thu , 23 Jan 2020 22:20:46 MSK
18
18
SimpleDateFormat sdf3 = new SimpleDateFormat ("E, dd MMM yyyy HH:mm:ss z" );
19
19
System .out .println (sdf3 .format (date ));
20
20
21
- //23 ÿíâàðÿ 2020 Moscow Standard Time
21
+ //23 january 2020 Moscow Standard Time
22
22
SimpleDateFormat sdf4 = new SimpleDateFormat ("dd MMMM yyyy zzzz" );
23
23
System .out .println (sdf4 .format (date ));
24
24
@@ -30,8 +30,8 @@ public static void main(String[] args) {
30
30
SimpleDateFormat sdf6 = new SimpleDateFormat ("HH:mm:ss (XXX)" );
31
31
System .out .println (sdf6 .format (date ));
32
32
33
- //2020.01.23 í.ý. â 22:33:45 MSK
34
- SimpleDateFormat sdf7 = new SimpleDateFormat ("yyyy.MM.dd G 'â ' HH:mm:ss z" );
33
+ //2020.01.23 n.a. at 22:33:45 MSK
34
+ SimpleDateFormat sdf7 = new SimpleDateFormat ("yyyy.MM.dd G 'в ' HH:mm:ss z" );
35
35
System .out .println (sdf7 .format (date ));
36
36
37
37
0 commit comments