仅获取时间戳记的日期 [英] Get only the date from the timestamp

查看:182
本文介绍了仅获取时间戳记的日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的下面的函数,我正在传递时间戳,只需要从时间戳返回的日期,而不是小时和秒。使用以下代码,我得到 -

This is my Below function in which I am passing timestamp, I need only the date in return from the timestamp not the Hours and Second. With the below code I am getting-

private String toDate(long timestamp) {
        Date date = new Date (timestamp * 1000);
        return DateFormat.getInstance().format(date).toString();
}

这是我得到的输出。

11/4/01 11:27 PM

但我只需要这样的日期

2001-11-04

任何建议?

推荐答案

使用SimpleDateFormat相反:

Use SimpleDateFormat instead:

private String toDate(long timestamp) {
    Date date = new Date (timestamp * 1000);
    return new SimpleDateFormat("yyyy-MM-dd").format(date);
}

这篇关于仅获取时间戳记的日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆