小编典典

Java转换给定时区的日期/时间

java

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

2019-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));

使用本地计算机的TimeZone。这是为什么?我知道,当“ new Date()”返回UTC + 0时间时,为什么当你将时间设置为毫秒时,它不再假定时间是UTC吗?

是否有可能:

  1. 在对象上设置时间(日历/日期/时间戳)
  2. (可能)设置初始时间戳的TimeZone(calendar.setTimeZone(…))
  3. 使用新的TimeZone格式化时间戳(formatter.setTimeZone(…))
  4. 返回具有新时区时间的字符串。(formatter.format(calendar.getTime()))
    在此先感谢你的帮助

阅读 567

收藏
2020-03-03

共1个答案

小编典典

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

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()));
2020-03-03