Timestamp 和String之间的转换 _JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Timestamp 和String之间的转换

Timestamp 和String之间的转换

 2012/9/8 11:52:12  Sharpleo  程序员俱乐部  我要评论(0)
  • 摘要:用Timestamp来记录日期时间还是很方便的,但有时候显示的时候是不需要小数位后面的毫秒的,这样就需要在转换为String时重新定义格式。Timestamp转化为String:SimpleDateFormatdf=newSimpleDateFormat("yyyy-MM-ddHH:mm:ss");//定义格式,不显示毫秒Timestampnow=newTimestamp(System.currentTimeMillis());//获取系统当前时间Stringstr=df.format(now
  • 标签:
用Timestamp来记录日期时间还是很方便的,但有时候显示的时候是不需要小数位后面的毫秒的,这样就需要在转换为String时重新定义格式。
 
      Timestamp转化为String:
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//定义格式,不显示毫秒
Timestamp now = new Timestamp(System.currentTimeMillis());//获取系统当前时间
String str = df.format(now);
 
      String转化为Timestamp:
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time = df.format(new Date());
Timestamp ts = Timestamp.valueOf(time);
  • 相关文章
发表评论
用户名: 匿名