GMT、CST格式时间转Date

带时区格式转Date

GMT格式时间转Date

SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy", Locale.ENGLISH);
Date date = format.parse("Sun Jun 14 16:09:24 GMT+08:00 2020");

CST格式时间转Date

SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy", Locale.ENGLISH);
Date date = format.parse("Sun Jun 14 16:09:24 CST 2020");

关于Locale: https://blog.csdn.net/qq_27727251/article/details/80077189.

你可能感兴趣的:(代码优化,java)