java中String,Date,Timestamp之间的相互转换

/**
* String --> Date
*/
@SuppressWarnings("deprecation")
public static void stringToDate(){
String dateStr = "2013/10/18 14:25:33";
Date date = new Date();
DateFormat df = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
try {
date = df.parse(dateStr);
System.out.println(date.toLocaleString());
} catch (ParseException e) {
e.printStackTrace();
}
}


/**

* Date --> String

*/
public  static void dateToString(){

Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");

System.out.println(sdf.format(date));
System.out.println(sdf1.format(date));

}
/**
* Timestamp --> String
*/
public static void timestampToString(){
Timestamp ts = new Timestamp(System.currentTimeMillis());
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

System.out.println(sdf.format(ts));

System.out.println(ts.toString());
}
/**
* 测试Timestamp 的valueOf()
*/
public static void timeStampValueOf(){
Timestamp ts = new Timestamp(System.currentTimeMillis());
String tsStr = "2013-10-18 14:57:28";
ts = Timestamp.valueOf(tsStr);
System.out.println(ts);
}

/**
* Timestamp --> Date
*/

public static void TimestampToDate(){
Timestamp ts = new Timestamp(System.currentTimeMillis());
Date date = new Date();
System.out.println(ts);
System.out.println(date);
date = ts;
System.out.println(date);
}
/**
* Date --> Timestamp

* Date 和 Timestamp 是父子类关系 所以Date不能直接想Timestamp转换
*/
public static void dateToTimestamp(){
Timestamp ts = new Timestamp(new Date().getTime());
System.out.println(ts);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值