删除月几的简单日期格式中的前导“0”
2022-09-02 11:26:07
是否可以在 2012 年 1 月 4 日删除“0”?
我目前正在使用以下Java来获取日期格式,例如
Monday, January 04, 2012
我希望它看起来像
Monday, January 4, 2012
Date anotherCurDate = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("EEEE', 'MMMM dd', ' yyyy");
final String formattedDateString = formatter.format(anotherCurDate);
final TextView currentRoomDate = (TextView) this.findViewById(R.id.CurrentDate);