我目前正在使用 Caldroid 开发日历应用程序,Caldroid 返回的日期如下所示:
Fri Jun 17 12:31:00 GMT+07:00 2016
我只需要从中提取日期,例如:
17-06-2016
我该怎么做?
尝试这个 -
DateFormat df = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
DateFormat df2 = new SimpleDateFormat("dd-MM-yyyy");
try {
//This will give you the desired output
df2.format(df.parse("Fri Jun 17 12:31:00 GMT+07:00 2016"));
} catch (ParseException e) {
e.printStackTrace();
}
您可以使用 SimpleDateFormat。请参考地址 http://tutorials.jenkov.com/java-internationalization/simpledateformat.html