安卓 :将实际日期和时间转换为米利斯和其他时区



我必须将实际日期和时间转换为米利斯和其他时区GMT+3(我的时区是GMT-2)。我使用此代码,但它返回我时间,但进入我的时区....为什么?

Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT-3"));
cal.get(Calendar.DAY_OF_MONTH);
cal.get(Calendar.MONTH);
cal.get(Calendar.YEAR);
cal.get(Calendar.HOUR_OF_DAY);
cal.get(Calendar.MINUTE);
cal.get(Calendar.SECOND);
cal.get(Calendar.MILLISECOND);
long timez = cal.getTime().getTime();

您需要使用 SimpleDateFormat。日历始终使用计算机上默认配置的时区。下面是有关如何使用 SimpleDateFormat 实现此功能的示例。

Date date = new Date();
  DateFormat firstFormat = new SimpleDateFormat();
  DateFormat secondFormat = new SimpleDateFormat();
  TimeZone firstTime = TimeZone.getTimeZone(args[0]);
  TimeZone secondTime = TimeZone.getTimeZone(args[1]);
  firstFormat.setTimeZone(firstTime);
  secondFormat.setTimeZone(secondTime);
  System.out.println("-->"+args[0]+": " + firstFormat.format(date));
  System.out.println("-->"+args[1]+": " + secondFormat.format(date));
  }

其中 arg[0] 和 arg1 是两个时区。参考此链接

getTime() 方法返回相同的时间。 它与时区无关。

相关内容

  • 没有找到相关文章

最新更新