在 android 中从 new java.util.Date() 更改时区显示类型
当我打印新的 java.util.Date() 时,它在 Android 中打印
Thu Feb 22 05:30:00 Asia/Calcutta 2007
我需要将其打印为 Thu Feb 22 05:30:00 IST 2007
请帮忙
When I print the new java.util.Date() it prints this in Android
Thu Feb 22 05:30:00 Asia/Calcutta 2007
I need this to be print as Thu Feb 22 05:30:00 IST 2007
please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,伙计们,我的问题已经解决了。这是我改编的解决方案
我的日期格式为 dd-mm-yy ,我需要将其转换为 Thu Feb 22 05:30:00 IST 2007
所以我刚刚创建了
SimpleDateFormat
具有适合 Thu Feb 22 05:30:00 IST 2007 格式的所需格式的类,最后在SimpleDateFormat
实例上调用format()
方法Alright guys I got my problem solved. Here is the solution what I adapted
I had the date in format in dd-mm-yy which I need to convert like Thu Feb 22 05:30:00 IST 2007
so I just created the object of the
SimpleDateFormat
class with the desire format suiting the format Thu Feb 22 05:30:00 IST 2007 and finally calledformat()
method onSimpleDateFormat
instance