Час джода
Створіть за DateTimeFormatter
допомогоюDateTimeFormat.forPattern(String)
Використовуючи час Joda, ви зробите це так:
String dateTime = "11/15/2013 08:00:00";
// Format for input
DateTimeFormatter dtf = DateTimeFormat.forPattern("MM/dd/yyyy HH:mm:ss");
// Parsing the date
DateTime jodatime = dtf.parseDateTime(dateTime);
// Format for output
DateTimeFormatter dtfOut = DateTimeFormat.forPattern("MM/dd/yyyy");
// Printing the date
System.out.println(dtfOut.print(jodatime));
Стандартна Java ≥ 8
Java 8 представила нову бібліотеку дати та часу , що полегшує роботу з датами та часом. Якщо ви хочете використовувати стандартну версію Java 8 або вище, ви використовуєте DateTimeFormatter . Оскільки у вас немає часового поясу String
, java.time.LocalDateTime або LocalDate , інакше можуть бути використані часові зони сортування ZonedDateTime та ZonedDate .
// Format for input
DateTimeFormatter inputFormat = DateTimeFormatter.ofPattern("MM/dd/yyyy HH:mm:ss");
// Parsing the date
LocalDate date = LocalDate.parse(dateTime, inputFormat);
// Format for output
DateTimeFormatter outputFormat = DateTimeFormatter.ofPattern("MM/dd/yyyy");
// Printing the date
System.out.println(date.format(outputFormat));
Стандартна Java <8
Перед Java 8 ви б використовували SimpleDateFormat та java.util.Date
String dateTime = "11/15/2013 08:00:00";
// Format for input
SimpleDateFormat dateParser = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");
// Parsing the date
Date date7 = dateParser.parse(dateTime);
// Format for output
SimpleDateFormat dateFormatter = new SimpleDateFormat("MM/dd/yyyy");
// Printing the date
System.out.println(dateFormatter.format(date7));