在 android 中从 new java.util.Date() 更改时区显示类型

发布于 2024-10-18 13:09:21 字数 152 浏览 3 评论 0原文

当我打印新的 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 技术交流群。

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

发布评论

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

评论(1

谈情不如逗狗 2024-10-25 13:09:21

好吧,伙计们,我的问题已经解决了。这是我改编的解决方案

我的日期格式为 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 called format() method on SimpleDateFormat instance

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