JAVA Date String 转 timestamp_JAVA_编程开发_程序员俱乐部

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

JAVA Date String 转 timestamp

 2014/6/6 12:40:44  tianqiushi  程序员俱乐部  我要评论(0)
  • 摘要:1.当前日转String转时间戳Datedt=newDate();SimpleDateFormatmatter1=newSimpleDateFormat("yyyy-MM-dd");System.out.println(matter1.format(dt));DateFormatformat=newSimpleDateFormat("yyyy-MM-dd");Timestampts=newTimestamp(format.parse(matter1.format(dt)).getTime())
  • 标签:Java
1.当前日转String转时间戳
class="java" name="code">
Date dt=new Date();
SimpleDateFormat matter1=new SimpleDateFormat("yyyy-MM-dd");
System.out.println(matter1.format(dt));
		     
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Timestamp ts = new Timestamp(format.parse(matter1.format(dt)).getTime());
System.out.println(ts.toString());



2.当前日期转时间戳
java.util.Date today = new java.util.Date();  
return new java.sql.Timestamp(today.getTime());


3.时间戳转String
    public static String timestamp2Str(Timestamp tp) {
    	if (tp == null) {
    		return "";
    	}
    	SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    	String str = df.format(tp);
    	return str;
    }


timestamp to Date


  • 大小: 6.3 KB
  • 查看图片附件
发表评论
用户名: 匿名