10

可能重复:
Android 获取当前时间和日期

从这个没有年份的格式日期,我知道如何摆脱年份。

但我也想形成月份和日期。如果用户设置 09/24/2012,则显示 09/24;如果用户设置 24/09/2012,则显示 24/09。

我也想支持l18n。

也许解决方案是结合 DateFormat 和 DateUtils,但我不知道该怎么做。

4

1 回答 1

-2

首先将信息拆分为变量,然后根据需要显示。

public String formatDate(String date)
{
    int index1, index2;

    index1 = date.indexOf('/');
    index2 = date.lastIndexOf('/');

    String str1, str2, str3;

    str1 = date.substring(0, index1);
    str2 = date.substring(index1 + 1, index2);
    str3 = date.substring(index2);

    // Presuming that str1 is the month and str2 is the day ...

    return str1 + "/" + str2;
}
于 2012-09-24T02:47:56.713 回答