gpt4 book ai didi

android - 将月份转换为 MMM 格式

转载 作者:搜寻专家 更新时间:2023-11-01 08:08:58 31 4
gpt4 key购买 nike

我正在尝试使用 SimpleDateFormat 将我的月份转换为 MMM 格式,但我无法转换它。

    tvDisplayDate = (TextView) findViewById(R.id.dateDisplay);

Calendar cal=Calendar.getInstance();

SimpleDateFormat format = new SimpleDateFormat("MMM");

int tempyear = cal.get(Calendar.YEAR);
int tempmonth = cal.get(Calendar.MONTH);
int tempday = cal.get(Calendar.DAY_OF_MONTH);

String month = new Integer(tempmonth).toString();

最佳答案

下面的作品(我刚测试过)

Calendar cal=Calendar.getInstance();
int tempmonth = cal.get(Calendar.MONTH);

SimpleDateFormat newformat = new SimpleDateFormat("MMM");
SimpleDateFormat oldformat = new SimpleDateFormat("MM");

String monthName = null;
Date myDate;
try {
myDate = oldformat.parse(String.valueOf(tempmonth));
monthName = newformat.format(myDate);
} catch (ParseException e) {
e.printStackTrace();
}

Log.d("MMM", monthName);

关于android - 将月份转换为 MMM 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11702334/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com