UTC时间和当地时间转换

UTC时间:协调互联网纾时,又称互联网纾标准时间,为加特林威治标准时间的新名,避免惟独彼方的感觉。简称UTC,从英文“Universal Time, Coordinated”来。

本地时间: 本地时间 = UTC + 时区差

转换方法:

/**
     * UTC时间 ---> 当地时间
     * @param utcTime   UTC时间
     * @param utcTimePatten     UTC时间格式
     * @param localTimePatten   当地时间格式
     * @return
     */
    public static String utc2Local(String utcTime, String utcTimePatten,
            String localTimePatten) {
        SimpleDateFormat utcFormater = new SimpleDateFormat(utcTimePatten);
        utcFormater.setTimeZone(TimeZone.getTimeZone("UTC"));
        Date gpsUTCDate = null;
        try {
            gpsUTCDate = utcFormater.parse(utcTime);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        SimpleDateFormat localFormater = new SimpleDateFormat(localTimePatten);
        localFormater.setTimeZone(TimeZone.getDefault());
        String localTime = localFormater.format(gpsUTCDate.getTime());
        return localTime;
    }

你可能感兴趣的:(Android开发,工具类)