一起来学FIX协议(3)——格林威治时间

在连接服务器时,我们的时间格式需要时格林威治时间,具体实现方法如下:

public static String getGMTTime(){
    SimpleDateFormat foo = new SimpleDateFormat("yyyyMMdd-HH:mm:ss.SSS", Locale.ENGLISH);
    foo.setTimeZone(TimeZone.getTimeZone("GMT"));
    return foo.format(new Date());
}

你可能感兴趣的:(一起来学FIX协议(3)——格林威治时间)