เวลา Joda
สร้าง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 แนะนำไลบรารี Date and Timeใหม่ทำให้ง่ายต่อการจัดการกับวันที่และเวลา หากคุณต้องการที่จะใช้มาตรฐาน 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));