美文网首页
2018-02-08T08:13:24.479Z格式的时间解析

2018-02-08T08:13:24.479Z格式的时间解析

作者: HWilliamgo | 来源:发表于2018-03-09 11:50 被阅读19次

当服务器返回的格式为
"createdAt": "2018-02-08T20:30:00.798Z",
的字符串格式的时间格式时,解析方式如下:

package com.solory.gankionews.Util;
/*
 *
 * Created by William on 2018/3/9.
 */
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;

public class TimeParse {
    private TimeParse() {
    }

    public static TimeParse getInstance() {
        return InstanceHolder.instance;
    }

    private final SimpleDateFormat utcFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS Z", Locale.CHINA);
    private final SimpleDateFormat defaultFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.CHINA);

    private static class InstanceHolder {
        private static final TimeParse instance = new TimeParse();
    }

    public String getTime(String UTCString) {
        try {
            UTCString = UTCString.replace("Z", " UTC");
            Date date = utcFormat.parse(UTCString);
            return defaultFormat.format(date);
        } catch (ParseException pe) {
            pe.printStackTrace();
            return null;
        }
    }
}

相关文章

  • 2018-02-08T08:13:24.479Z格式的时间解析

    当服务器返回的格式为"createdAt": "2018-02-08T20:30:00.798Z",的字符串格式的...

  • 2018-06-07《Python机器学习》

    Chapter 13 使用Python解析MNIST数据集(IDX文件格式) 图片——》idx-ubyte格式 模...

  • 特殊时间格式解析

    2020-01-10T01:22:50.000+0000

  • JSON XML解析

    JSON,XML解析 解析 解析:从实现规定好的格式中提取数据 解析的前提:提前设定好格式,数据提供方按照格式提供...

  • java DateFormat

    DateFormat 是日期/时间格式化子类的抽象类,它以与语言无关的方式格式化并解析日期或时间。日期/时间格式化...

  • iOS时间格式化、时间戳、日期格式化、常见格式互转

    1)当前时间格式化---转字符串 2)当前时间格式化---转时间戳(13位) 3)时间戳(13位)---转字符串 ...

  • 网络之数据解析

    解析的基本概念 解析:从事先规定好的格式中提取数据 解析的前提:提前约定好格式,数据提供方按照格式提供格式,数据获...

  • Java-API-包其他

    System Math 时间格式化 DateFormat: 允许进行格式化(也就是日期 -> 文本)、解析(文本-...

  • 数据解析

    XML数据格式解析 pull解析方式 sax解析方式 JSON 数据格式解析 解析代码很简单,但是还要有APP类,...

  • Go语言标准库之time

    Go语言标准库之time 时间的格式化和解析 格式化 FormatGo语言和其他语言的时间格式化的方式不同,Go语...

网友评论

      本文标题:2018-02-08T08:13:24.479Z格式的时间解析

      本文链接:https://www.haomeiwen.com/subject/uqepfftx.html