例如,字符串值为:
15/08/2013 15:30 GMT+10:00
我想15/08/2013
在Java中将上面的字符串格式化为(删除时间部分并只保留日期)。
我该怎么做这种格式?
删除时间部分,只保留日期
String dateString= "15/08/2013 15:30 GMT+10:00";
String result = dateString.split(" ")[0];
那给你 15/08/2013
没有必要格式化,我猜。
由于现在是 2018 年,并且我们在 Java 8+(和ThreeTen Backport)中有日期/时间 API,您可以执行类似...
String text = "15/08/2013 15:30 GMT+10:00";
LocalDateTime ldt = LocalDateTime.parse(text, DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm z", Locale.ENGLISH));
System.out.println(ldt);
// In case you just want to do some "date" manipulation, without the time component
LocalDate ld = ldt.toLocalDate();
// Will produce "2013-08-15"
//String format = ldt.format(DateTimeFormatter.ISO_LOCAL_DATE);
String format = ldt.format(DateTimeFormatter.ofPattern("dd/MM/yyyy"));
System.out.println(format);
一种方法是将String
日期解析为Date
对象,然后根据您的要求简单地格式化
String text = "15/08/2013 15:30 GMT+10:00";
SimpleDateFormat inFormat = new SimpleDateFormat("dd/MM/yyyy HH:mm z");
Date date = inFormat.parse(text);
System.out.println(date);
SimpleDateFormat outFormat = new SimpleDateFormat("dd/MM/yyyy");
String formatted = outFormat.format(date);
System.out.println(formatted);
Date
如果您需要它用于其他事情,这具有保留日期/时间信息的好处;)
见,SimpleDateFormat
了解更多详情
如果这只不过是你有一个包含的字符串,15/08/2013 15:30 GMT+10:00
而你只想要日期部分,即字符串的前 10 个字符,我只取前 10 个字符;无需将其解析并格式化为日期:
String input = "15/08/2013 15:30 GMT+10:00";
String result = input.substring(0, 10);
DateFormat formatter = new SimpleDateFormat(format);
Date date = (Date) formatter.parse(dateStr);
Check out the DateFormat class, http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
You should be able to parse in the date using a parser and then write out your desired format in another pattern
i.e. new SimpleDateFormat("dd/MM/yyyy hh:mm z") for inbound
new SimpleDateFormat("dd/MM/yyyy") for your updated format
Try using the SimpleDateFormat class: http://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html