1

我在模式中有一个日期26/03/2013。如何March 2013在 Android 中获得类似月份和年份的格式?我的约会就像29-03-2017

我想将此日期转换为年和月。

4

2 回答 2

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();
}
于 2013-06-22T07:28:17.477 回答
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); 
于 2013-06-22T07:24:54.057 回答