gpt4 book ai didi

java - 在 TextView 的 setText 之前更改日期格式

转载 作者:行者123 更新时间:2023-11-29 19:37:03 25 4
gpt4 key购买 nike

我使用 DatePicker 来选择日期。一切顺利。但问题是格式化日期。

// display current date
public void setCurrentDateOnView() {

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

final Calendar c = Calendar.getInstance();
year = c.get(Calendar.YEAR);
month = c.get(Calendar.MONTH);
day = c.get(Calendar.DAY_OF_MONTH);

// set current date into textview
tvDisplayDate.setText(new StringBuilder().append(year).append("-").append(month + 1).append("-").append(day).append(" "));
// Month is 0 based, just add 1

}

根据代码,我得到了输出:2016-8-22但我的预期输出是 2016-08-22(我想要这样的月份 08)

谢谢,问候,卡尔西。

最佳答案

使用简单日期格式:

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
tvDisplayDate.setText(sdf.format(c.getTime()));

有关 SimpleDateFormat 的更多信息,请参阅官方 documentation

关于java - 在 TextView 的 setText 之前更改日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39072608/

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