与字符串转换
//Date 转 String
public static String getStringDate(Date date) {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd_HH:mm:ss");
String dateString = formatter.format(date);
return dateString;
}
// String 转 Date
public static Date getDateString(String strDate) {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd_HH:mm:ss");
ParsePosition pos = new ParsePosition(0);
Date strtodate = formatter.parse(strDate, pos);
retu
与sql.Date转换
//sql与util date互转
java.util.Date uD1 = new java.util.Date();
System.out.println(uD1);
java.sql.Date sD = new java.sql.Date(uD1.getTime());
java.sql.Time tD = new java.sql.Time(uD1.getTime());
System.out.println(sD);
System.out.println(tD);
java.sql.Timestamp t = new Timestamp(sD.getTime());
System.out.println(t);
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/106702.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...