如何获得GMT的时间,如2016-02-28 / 20:31 GMT

时间:2015-12-28 12:00:27

标签: java

我也希望有时间使用GMT字符串。

但我无法得到它。

Collection<? extends GrantedAuthority> attemptAuthentication(String username,
                                                             String password)
                                                       throws RemoteAuthenticationException;

但我得到这样的2015-12-28 / 11-53 最后没有GMT

1 个答案:

答案 0 :(得分:2)

使用

 DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd/hh-mm z");
 dateFormat.setTimeZone(TimeZone.getTimeZone("GMT"));

而不是

DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd/hh-mm");

其中'z'表示时区