Convert LocalDateTime to LocalDateTime in UTC

后端 未结 10 1049
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-30 08:20

Convert LocalDateTime to LocalDateTime in UTC.

LocalDateTime convertToUtc(LocalDateTime date) {

    //do conversion

}

I searched over net. Bu

10条回答
  •  旧时难觅i
    2021-01-30 08:49

    public static String convertFromGmtToLocal(String gmtDtStr, String dtFormat, TimeZone lclTimeZone) throws Exception{
            if (gmtDtStr == null || gmtDtStr.trim().equals("")) return null;
            SimpleDateFormat format = new SimpleDateFormat(dtFormat);
            format.setTimeZone(getGMTTimeZone());
            Date dt = format.parse(gmtDtStr);
            format.setTimeZone(lclTimeZone);
            return
    

    format.format(dt); }

提交回复
热议问题