时区配置

发布于 2024-12-08 04:38:08 字数 126 浏览 0 评论 0原文

我在 SimpleDateFormat“Sun, 02 Oct 2011 14:00:00 +0100”中收到此字符串,我的输出可以减少 1 小时吗?而不是 +0100 有 GMT?

谢谢

i receive this string in my SimpleDateFormat "Sun, 02 Oct 2011 14:00:00 +0100", it's possible to decrease 1 hour in my output? Instead of +0100 have GMT?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

把回忆走一遍 2024-12-15 04:38:08

休息一小时:

SimpleDateFormat sf = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss z", Locale.ENGLISH);
sf.setCalendar(Calendar.getInstance(TimeZone.getTimeZone("GMT")));
Calendar calendar = Calendar.getInstance(); 
Date now = calendar.getTime();

calendar.add(Calendar.HOUR,-1);
Date earlierTime = calendar.getTime();
System.out.println(sf.format(now)); // output: Thu, 06 Oct 2011 11:53:58 GMT
System.out.println(sf.format(earlierTime)); // output: Thu, 06 Oct 2011 10:53:58 GMT

Taking an hour off:

SimpleDateFormat sf = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss z", Locale.ENGLISH);
sf.setCalendar(Calendar.getInstance(TimeZone.getTimeZone("GMT")));
Calendar calendar = Calendar.getInstance(); 
Date now = calendar.getTime();

calendar.add(Calendar.HOUR,-1);
Date earlierTime = calendar.getTime();
System.out.println(sf.format(now)); // output: Thu, 06 Oct 2011 11:53:58 GMT
System.out.println(sf.format(earlierTime)); // output: Thu, 06 Oct 2011 10:53:58 GMT
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文