Timestame类型和String 类型的转化
Posted 悟知清风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Timestame类型和String 类型的转化相关的知识,希望对你有一定的参考价值。
Timestame类型和String 类型的转化
String转化为Timestamp: |
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String time = df.format(new Date()); Timestamp ts = Timestamp.valueOf(time); |
Timestamp转化为String: |
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//定义格式 Timestamp now = new Timestamp(System.currentTimeMillis());//获取系统当前时间,也可以是其他需转化的时间 String str = df.format(now); |
以上是关于Timestame类型和String 类型的转化的主要内容,如果未能解决你的问题,请参考以下文章