我在模式中有一个日期26/03/2013
。如何March 2013
在 Android 中获得类似月份和年份的格式?我的约会就像29-03-2017
我想将此日期转换为年和月。
像这样:
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();
}
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);