String date="21-04-2013";
在我的 android 应用程序中,我想以以下格式显示日期,例如“21”是一个单独的字符串,月份就像“Apr”作为单独的字符串,年份就像“13”作为单独的字符串,而不使用字符串函数。任何人都可以提供一些建议以这种格式转换吗?任何日期功能都可用吗?
String date="21-04-2013";
在我的 android 应用程序中,我想以以下格式显示日期,例如“21”是一个单独的字符串,月份就像“Apr”作为单独的字符串,年份就像“13”作为单独的字符串,而不使用字符串函数。任何人都可以提供一些建议以这种格式转换吗?任何日期功能都可用吗?
您需要查看SimpleDateFormat
用于解析日期字符串的类。为了在不使用字符串函数的情况下结束单独的字符串,您可能还需要多个格式化程序来输出。它看起来有点像这样:
String date = "21-04-2013";
SimpleDateFormat dateFormatter = new SimpleDateFormat("dd-MM-yyyy"); // input date
Date outDate = dateFormatter.parse(date);
SimpleDateFormat dayFormatter = new SimpleDateFormat("dd"); // output day
SimpleDateFormat monthFormatter = new SimpleDateFormat("MMM"); // output month
SimpleDateFormat yearFormatter = new SimpleDateFormat("yy"); // output year
String day = dayFormatter.format(outDate);
String monthy = monthFormatter.format(outDate);
String year = yearFormatter.format(outDate);
如果您要使用String.split()
,则可以摆脱上述代码段中的至少两个格式化程序。
这是您需要的课程:DateFormat
链接中提供了示例,但简而言之,您首先需要解析日期,然后再次格式化日期。