Java与Unix时间戳的相互转换详解
程序员文章站
2024-02-22 17:19:28
java将unix时间戳转换成指定格式日期,供大家参考,具体内容如下
当从服务器获取数据的时候,有时候获取的数据中的时间在很多的情况下是时间戳类似于这样147304826...
java将unix时间戳转换成指定格式日期,供大家参考,具体内容如下
当从服务器获取数据的时候,有时候获取的数据中的时间在很多的情况下是时间戳类似于这样1473048265,当然,我们不可能将这些数据以时间戳的形式展示给用户,通常情况,是要对这个时间戳进行一系列的处理加工,使其变成我们想要并习惯浏览的那种格式,那么怎么处理这些时间戳格式的数据呢?每个语言和框架都有自己的方法和方式。
下面将以java的方法来实现,废话少说直接撸码……
方法实现
/** * java将unix时间戳转换成指定格式日期字符串 * @param timestampstring 时间戳 如:"1473048265"; * @param formats 要格式化的格式 默认:"yyyy-mm-dd hh:mm:ss"; * * @return 返回结果 如:"2016-09-05 16:06:42"; */ public static string timestamp2date(string timestampstring, string formats) { if (textutils.isempty(formats)) formats = "yyyy-mm-dd hh:mm:ss"; long timestamp = long.parselong(timestampstring) * 1000; string date = new simpledateformat(formats, locale.china).format(new date(timestamp)); return date; }
调用方法
timestamp2date("1473048265", "yyyy-mm-dd hh:mm:ss");
返回结果
2016-09-05 16:06:42
将java指定格式日期转换成unix时间戳
/** * 日期格式字符串转换成时间戳 * * @param datestr 字符串日期 * @param format 如:yyyy-mm-dd hh:mm:ss * * @return */ public static string date2timestamp(string datestr, string format) { try { simpledateformat sdf = new simpledateformat(format); return string.valueof(sdf.parse(datestr).gettime() / 1000); } catch (exception e) { e.printstacktrace(); } return ""; }
取得当前时间戳(精确到秒)
/** * 取得当前时间戳(精确到秒) * * @return nowtimestamp */ public static string getnowtimestamp() { long time = system.currenttimemillis(); string nowtimestamp = string.valueof(time / 1000); return nowtimestamp; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。