BlackBerry 的当前日期
我正在开发一个需要设备当前日期的应用程序,但它只需要星期几、月份和月份,例如 10 月 14 日星期五
我已经尝试过此代码日历。如何将日期转换为字符串?是否可以获取这种格式的日期?
Calendar c = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
System.out.println("Date" + c.getTime());
and my output : `Fri Oct 14 16:17:03 Asia/Calcutta 2011`
I am developing an application which needs the current date from the device, but it only needs day-of-week, month, and day-of-month, like Friday October 14
I have tried this code with Calendar. How do I convert Date to String? Is this possible to get date in this format?
Calendar c = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
System.out.println("Date" + c.getTime());
and my output : `Fri Oct 14 16:17:03 Asia/Calcutta 2011`
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
SimpleDateFormat
:如果您需要不同字符串中的这些值,它会变得有点复杂(使用
DateFormatSymbols
到获取月份/工作日名称):You could use
SimpleDateFormat
:If you need those values in different Strings it gets a little bit more complicated (using
DateFormatSymbols
to get the month/weekday names):