Timestamp和String相互转换Timestamp和String类型相互转换例⼦:
String str ="2018-05-06 10:30:40";
//String 转 Timestamp
Timestamp time = Timestamp.valueOf(str);
string转date的方法//Timestamp 转 String
String strn =new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(time);

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。