获取系统时间及将时间戳转化为时间

这些知识点虽然很简单,但在项目中会经常使用,记录下来方便以后使用

、获取系统时间

public String getDateNow() {
    final SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy年MM月dd日");
    final String format = simpleDateFormat.format(new Date(System.currentTimeMillis()));
    return format;
}
//将时间戳转换成时间
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Long longTime = new Long(notifyList.get(position).get("createTime"));
Date date = new Date(longTime);
String createTime = simpleDateFormat.format(date);

你可能感兴趣的:(获取系统时间,时间戳)