我也希望有时间使用GMT字符串。
但我无法得到它。
Collection<? extends GrantedAuthority> attemptAuthentication(String username,
String password)
throws RemoteAuthenticationException;
但我得到这样的2015-12-28 / 11-53 最后没有GMT
答案 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'
表示时区