Skip to content

Commit 68b1467

Browse files
authored
Translated to English
1 parent 28de015 commit 68b1467

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

SimpleDateFormatExamples.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ public static void main(String[] args) {
1010
SimpleDateFormat sdf1 = new SimpleDateFormat("MM.d.yyyy HH:mm:ss");
1111
System.out.println(sdf1.format(date));
1212

13-
//÷åòâåðã 23 ÿíâàðÿ 2020 22:17:54
13+
//Thursday 23 January 2020 22:17:54
1414
SimpleDateFormat sdf2 = new SimpleDateFormat("EEEEE DD MMMMM yyyy HH:mm:ss");
1515
System.out.println(sdf2.format(date));
1616

17-
//×ò, 23 ÿíâ 2020 22:20:46 MSK
17+
//Thu, 23 Jan 2020 22:20:46 MSK
1818
SimpleDateFormat sdf3 = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss z");
1919
System.out.println(sdf3.format(date));
2020

21-
//23 ÿíâàðÿ 2020 Moscow Standard Time
21+
//23 january 2020 Moscow Standard Time
2222
SimpleDateFormat sdf4 = new SimpleDateFormat("dd MMMM yyyy zzzz");
2323
System.out.println(sdf4.format(date));
2424

@@ -30,8 +30,8 @@ public static void main(String[] args) {
3030
SimpleDateFormat sdf6 = new SimpleDateFormat("HH:mm:ss (XXX)");
3131
System.out.println(sdf6.format(date));
3232

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");
3535
System.out.println(sdf7.format(date));
3636

3737

0 commit comments

Comments
 (0)