yyyy-MM-dd'T'HH:mm:ss.SSSSSSS'Z'格式

时间:2017-05-16 11:54:20

标签: java datetime-conversion

我正在尝试将GMT转换为IST。

  SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSSSSS");
  Date c= sdf.parse("2017-03-31T10:38:14.4723017Z");

  Date date = new Date();
  DateFormat istFormat = new SimpleDateFormat();
  DateFormat gmtFormat = new SimpleDateFormat();
  TimeZone gmtTime = TimeZone.getTimeZone("GMT");
  TimeZone istTime = TimeZone.getTimeZone("IST");

  istFormat.setTimeZone(gmtTime);
  gmtFormat.setTimeZone(istTime);
  System.out.println("GMT Time: " + istFormat.format(c));
  System.out.println("IST Time: " + gmtFormat.format(c));

我的输出是

GMT Time: 31/3/17 6:26 AM
IST Time: 31/3/17 11:56 AM

但我的实际输出应该是

GMT Time: 31/3/17 5:08 AM
IST Time: 31/3/17 10:38 AM

我的代码出了什么问题?

2 个答案:

答案 0 :(得分:5)

毫秒(SSS)只能是三位数。更重要的是,日期滚动 - 例如10:38:14.1000变为10:38:15.000。添加几百万毫秒...然后你就会得到你现在看到的行为。

试试这个。

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS");
Date c = sdf.parse("2017-03-31T10:38:14.472Z");

System.out.println(c);

DateFormat istFormat = new SimpleDateFormat();
DateFormat gmtFormat = new SimpleDateFormat();
TimeZone gmtTime = TimeZone.getTimeZone("GMT");
TimeZone istTime = TimeZone.getTimeZone("IST");

istFormat.setTimeZone(gmtTime);
gmtFormat.setTimeZone(istTime);
System.out.println("GMT Time: " + istFormat.format(c));
System.out.println("IST Time: " + gmtFormat.format(c));

答案 1 :(得分:0)

您是否尝试将格式更改为"yyyy-MM-dd'T'HH:mm:ss.sssssssZ"

此外,当您在Date对象中键入Z时,您应该编写时区指示符,例如" 2017-03-31T10:38:14.4723017 + 01:00"。