Android中的日期转换为月份和年份

时间:2013-06-22 07:20:04

标签: android datetime

我在模式26/03/2013中有一个日期。如何在Android中获得与March 2013格式相同的月份和年份?我的约会对象是29-03-2017

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

2 个答案:

答案 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);