将字符串转换为 GregorianCalendar
如何获取输入生日字符串(例如 02 26 1991)并将其放入公历?
我先尝试解析它,但它一直给我一条错误消息,所以我不太确定我做错了什么。在此日期之前我还有其他输入数据。一个是另一个字符串,一个是双精度值。
How do a I take an input birthday string such as 02 26 1991 and make it into a Gregorian Calendar?
I tried parsing it first but it keeps giving me an error message so I'm not quite sure what I'm doing wrong. I also have other input data before this date. One is another string and one is a double value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
SimpleDateFormat
解析日期,然后将其分配给日历
。第三行可以替换为:
但我更喜欢第一个版本。
Use
SimpleDateFormat
to parse the date and then assign it to aCalendar
.The third line could be replaced with:
but I prefer the first version.
使用如下所示的 DateFormat 此处:
示例:
Use a DateFormat as shown here:
Example: