java 中怎么把字符串时间转换成Timestamp类型; new Timestamp(Date.parse("2011/03/12 22:57")) 这个方
展开全部
Date date = new Date();
SimpleDateFormat df1 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String time = df1.format(date);
Timestamp CreateDate = Timestamp.valueOf(time);
SimpleDateFormat df1 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String time = df1.format(date);
Timestamp CreateDate = Timestamp.valueOf(time);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个类不常用,可能是这样的:
Timestamp s=new Timestamp(new Date().UTC(2011, 03, 12, 22, 57, 00));
Timestamp s=new Timestamp(new Date().UTC(2011, 03, 12, 22, 57, 00));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//Timestamp -------------------
public static Timestamp StrToTimestamp(String timestampStr, String pattern)
throws ParseException {
java.util.Date date = null;
SimpleDateFormat format = new SimpleDateFormat(pattern);
try {
date = format.parse(timestampStr);
} catch (ParseException e) {
throw e;
}
return date == null ? null : new Timestamp(date.getTime());
}
public static Timestamp StrToTimestamp(String timestampStr, String pattern)
throws ParseException {
java.util.Date date = null;
SimpleDateFormat format = new SimpleDateFormat(pattern);
try {
date = format.parse(timestampStr);
} catch (ParseException e) {
throw e;
}
return date == null ? null : new Timestamp(date.getTime());
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询