请教如何返回系统时间到字符串类型用于传递给SQL,datetime类型
获取系统当前时间gettime成字符串"yyyy-MM-dd HH:mm:ss.SSS"放到SQL里的datetime类型中应该怎样写呢
SimpleDateFormat bartDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
bartDateFormat = getTime().tostring();
不行呀,应该怎样写?
[解决办法]
SimpleDateFormat bartDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
String time=bartDateFormat.format(Calendar.getInstance().getTime());
System.out.println(time);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(sdf.format(new Date()));