我有一个字符串“11/15/2013 08:00:00
”,我想将其格式化为“11/15/2013
”,正确的DateTimeFormatter
模式是什么?
我尝试了很多并用Google搜索,但仍无法找到正确的模式。
编辑:我正在寻找Joda-Time DateTimeFormatter
,而不是Java的SimpleDateFormat ..
答案 0 :(得分:349)
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引入了new Date and Time library,可以更轻松地处理日期和时间。如果要使用标准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之前,您将使用a 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));
答案 1 :(得分:35)
即使其他答案完全可以接受,我也在这里添加。 JodaTime在DateTimeFormat中预先构建了解析器:
dateTime.toString(DateTimeFormat.longDate());
这是以其格式打印出来的大部分选项:
shortDate: 11/3/16
shortDateTime: 11/3/16 4:25 AM
mediumDate: Nov 3, 2016
mediumDateTime: Nov 3, 2016 4:25:35 AM
longDate: November 3, 2016
longDateTime: November 3, 2016 4:25:35 AM MDT
fullDate: Thursday, November 3, 2016
fullDateTime: Thursday, November 3, 2016 4:25:35 AM Mountain Daylight Time
答案 2 :(得分:19)
DateTime date = DateTime.now().withTimeAtStartOfDay();
date.toString("HH:mm:ss")
答案 3 :(得分:10)
我有一个非常愚蠢但有效的选择。 如果你有String fullDate =“11/15/2013 08:00:00”;
String finalDate = fullDate.split(" ")[0];
这应该简单快捷。 :)
答案 4 :(得分:10)
我认为如果您使用JodaTime:
,这将有效String strDateTime = "11/15/2013 08:00:00";
DateTime dateTime = DateTime.parse(strDateTime);
DateTimeFormatter fmt = DateTimeFormat.forPattern("MM/dd/YYYY");
String strDateOnly = fmt.print(dateTime);
我从here获得了部分内容。
答案 5 :(得分:3)
请尝试这个
$object = new My\Product(new My\ProductImplA());
$serialized = $serializer->serialize($object);
$deserialized = $serializer->deserialize($serialized); // does not work
答案 6 :(得分:2)
这有效
String x = "22/06/2012";
String y = "25/10/2014";
String datestart = x;
String datestop = y;
//DateTimeFormatter format = DateTimeFormat.forPattern("dd/mm/yyyy");
SimpleDateFormat format = new SimpleDateFormat("dd/mm/yyyy");
Date d1 = null;
Date d2 = null;
try {
d1 = format.parse(datestart);
d2 = format.parse(datestop);
DateTime dt1 = new DateTime(d1);
DateTime dt2 = new DateTime(d2);
//Period
period = new Period (dt1,dt2);
//calculate days
int days = Days.daysBetween(dt1, dt2).getDays();
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
答案 7 :(得分:2)
只想要字符串:
DateTime.parse("201711201515",DateTimeFormat.forPattern("yyyyMMddHHmm")).toString("yyyyMMdd");
如果想要日期时间:
DateTime.parse("201711201515", DateTimeFormat.forPattern("yyyyMMddHHmm")).withTimeAtStartOfDay();
答案 8 :(得分:1)
另一种方法是:
String date = dateAndTime.substring(0, dateAndTime.indexOf(" "));
我不确定,但我认为这可能比使用.split()
方法更快/使用更少的内存。
答案 9 :(得分:0)
最简单的方法:
DateTime date = new DateTime();
System.out.println(date.toString(DateTimeFormat.forPattern("yyyy-mm-dd")));