删除前导“0”以月份中的某一天为单位 SimpleDateFormat

发布于 2024-12-26 13:36:11 字数 459 浏览 1 评论 0原文

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); 

Is it possible to remove the "0" in January 04, 2012?

I am currently using the following Java to get the date format like

Monday, January 04, 2012

I would like for it to look like

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); 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

Spring初心 2025-01-02 13:36:12
SimpleDateFormat formatter = new SimpleDateFormat("EEEE', 'MMMM d', ' yyyy");

应该这样做(一个“d”而不是两个)?

http://docs.oracle.com/javase/6 /docs/api/java/text/SimpleDateFormat.html

SimpleDateFormat formatter = new SimpleDateFormat("EEEE', 'MMMM d', ' yyyy");

Should do it (one 'd' instead of two)?

http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html

记忆之渊 2025-01-02 13:36:12

您可以通过执行以下操作获得数字前面没有“0”的字符串:

Calendar today = Calendar.getInstance();
// If you want the day/month in String format  
String month = today.get(Calendar.MONTH)+""; 

// If you want the day/month in Integer format 
int monthInt = (int ) Integer.parseInt(month);

You can get a String without "0" in front of a number just by doing this :

Calendar today = Calendar.getInstance();
// If you want the day/month in String format  
String month = today.get(Calendar.MONTH)+""; 

// If you want the day/month in Integer format 
int monthInt = (int ) Integer.parseInt(month);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文