我在模式26/03/2013
中有一个日期。如何在Android中获得与March 2013
格式相同的月份和年份?我的约会对象是29-03-2017
我想将此日期转换为年份和月份。
答案 0 :(得分:3)
像这样:
try {
String dateString = "26/03/2013";
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
Date date = sdf.parse(dateString);
SimpleDateFormat outputFormat = new SimpleDateFormat("MMMM yyyy");
String formattedDate = outputFormat.format(date);
Log.d(TAG, "Got the date: " + formattedDate);
} catch (ParseException e) {
e.printStackTrace();
}
答案 1 :(得分:0)
String strdate = "26/03/2013";
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
Date yourdate = sdf.parse(str);
SimpleDateFormat sdf = new SimpleDateFormat( "MMMM yyyy" );
String yourfinaldate = sdf.format(yourdate);