Android 中的 SimpleDateFormat 将当前日期指定为 02/32/2011

发布于 2024-10-15 10:33:16 字数 282 浏览 4 评论 0原文

今天是 2011 年 2 月 1 日。我尝试使用 SimpleDateFormat 为 Android 生成格式为“MM/DD/yyyy”的日期字符串。这是我的代码:

Date d = new Date();
String date = (new SimpleDateFormat("MM/DD/yyyy")).format(d);

它返回以下字符串:

02/32/2011

这里发生了什么?我看不出我做错了什么。

Today is February 1, 2011. I am trying to generate a date string for Android in the format "MM/DD/yyyy" using SimpleDateFormat. Here is my code:

Date d = new Date();
String date = (new SimpleDateFormat("MM/DD/yyyy")).format(d);

It returns the following string:

02/32/2011

What is going on here? I can't see anything that I'm doing wrong.

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

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

发布评论

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

评论(2

仅一夜美梦 2024-10-22 10:33:16

使用“月/日/年”。您使用的是一年中的某一天而不是一月中的某一天。

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

Use "MM/dd/yyyy". You're using the day in year instead of day in month.

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

心的憧憬 2024-10-22 10:33:16

dd 是月份中某天的占位符,而不是 DD

dd is placeholder for day of month, not DD.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文