如何将字符串(yyyy-mm-dd)转换为日期格式
我找到了 (yyyy-mm-dd) 格式的日期,例如 2011-09-20。 请给我将此字符串转换为日期的解决方案。
我想将此日期添加到黑莓的日历事件中。
I have find the date in (yyyy-mm-dd) format Like this 2011-09-20.
Please give me the solution to convert this string to Date.
I want to add this date to the calender event in blackberry.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否完全理解你的问题。如果您想获取当前日期,请使用以下代码:
获取当前日期,然后使用
获取日、月、年等信息。 (查看 BlackBerry API 的相关信息)
如果您尝试设置日期对象,我可能会使用日历。
下面是我的代码示例,其中我根据指定日期创建日历对象,然后将其添加到 BlackBerry 日历
祝你好运!
I'm not sure I fully understand your question. If you are trying to get the current date, use this code:
to get the current date, then use
to get the info such as day, month, and year. (Check out the BlackBerry API's for this)
If you are trying to set a date object, I would probably use Calendar.
Here is an example of my code where I create a Calendar object based on a specified date, then add it to the BlackBerry calendar
Good Luck!