UTC时间转换

//Date转UTC String    
//String转UTC String
public class UTCTimeFormatTest {
    //UTC就是世界标准时间,与北京时间相差八个时区。所以只要将UTC时间转化成一定格式的时间,再在此基础上加上8个小时就得到北京时间了。
    public static void main(String[] args) throws ParseException {
        //Date转UTC String
        //Z代表UTC统一时间:2017-11-27T03:16:03.944Z
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
        Date date = new Date();
        System.out.println(date);
        String str = format.format(date);
        System.out.println(str);

        //String转UTC String
        SimpleDateFormat dayformat = new SimpleDateFormat("yyyy-MM-dd");
        String source ="2018-09-18";
        //先将年月日的字符串日期格式化为date类型
        Date day = dayformat.parse(source);
        //然后将date类型的日期转化为UTC格式的时间
        String str2= format.format(day);
        System.out.println(str2);
    }
}

你可能感兴趣的:(时间转换)