时间戳(timestamp),一个能表示一份数据在某个特定时间之前已经存在的、 完整的、 可验证的数据,通常是一个字符序列,唯一地标识某一刻的时间。使用数字签名技术产生的数据, 签名的对象包括了原始文件信息、 签名参数、 签名时间等信息。广泛的运用在知识产权保护、 合同签字、 金融帐务、 电子报价投标、 股票交易等方面。
时间转换为时间戳:
1
2
3
4
5
6
7
8
9
10
11
|
/* * 将时间转换为时间戳 */ public static String dateToStamp(String s) throws ParseException{ String res; SimpleDateFormat simpleDateFormat = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss" ); Date date = simpleDateFormat.parse(s); long ts = date.getTime(); res = String.valueOf(ts); return res; } |
时间戳转换为时间:
1
2
3
4
5
6
7
8
9
10
11
|
/* * 将时间戳转换为时间 */ public static String stampToDate(String s){ String res; SimpleDateFormat simpleDateFormat = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss" ); long lt = new Long(s); Date date = new Date(lt); res = simpleDateFormat.format(date); return res; } |
简单地说,时间戳就是一种类型,只是精度很高,比datetime要精确的多,通常用来防止数据出现脏读现象。
以上就是本文关于Java实现时间和时间戳相互转换的方法实例,希望对大家有所帮助。
原文链接:https://www.2cto.com/kf/201612/579633.html