gpt4 book ai didi

java - 转换给定时区的日期/时间 - java

转载 作者:bug小助手 更新时间:2023-10-28 10:42:57 24 4
gpt4 key购买 nike

我想将此 GMT 时间戳转换为 GMT+13:

2011-10-06 03:35:05

我已经尝试了大约 100 种不同的 DateFormat、TimeZone、Date、GregorianCalendar 等组合来尝试完成这项非常基本的任务。

此代码在当前时间执行我想要的操作:

Calendar calendar = new GregorianCalendar(TimeZone.getTimeZone("GMT"));

DateFormat formatter = new SimpleDateFormat("dd MMM yyyy HH:mm:ss z");
formatter.setTimeZone(TimeZone.getTimeZone("GMT+13"));

String newZealandTime = formatter.format(calendar.getTime());

但我想要的是设置时间而不是使用当前时间。

我发现任何时候我都尝试这样设置时间:

calendar.setTime(new Date(1317816735000L));

使用本地机器的时区。这是为什么?我知道当“new Date()”返回 UTC+0 时间时,为什么当您以毫秒为单位设置时间时,它不再假定时间为 UTC?

是否可以:

  1. 为对象设置时间(日历/日期/时间戳)
  2. (可能)设置初始时间戳的时区(calendar.setTimeZone(...))
  3. 使用新的 TimeZone 格式化时间戳 (formatter.setTimeZone(...)))
  4. 返回一个带有新时区时间的字符串。 (formatter.format(calendar.getTime()))

最佳答案

对我来说,最简单的方法是:

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;

Calendar calendar = Calendar.getInstance();
calendar.setTime(new Date());
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");

//Here you say to java the initial timezone. This is the secret
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
//Will print in UTC
System.out.println(sdf.format(calendar.getTime()));

//Here you set to your timezone
sdf.setTimeZone(TimeZone.getDefault());
//Will print on your default Timezone
System.out.println(sdf.format(calendar.getTime()));

关于java - 转换给定时区的日期/时间 - java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7670355/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com