获取当前时间格式化存入Mysql数据库

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public static Date getTime() throws ParseException {    
    Date date = new Date();//获得系统当前时间.
    SimpleDateFormat sdf = new SimpleDateFormat( " yyyy-MM-dd HH:mm:ss " );
    String nowTime = sdf.format(date);
    return sdf.parse( nowTime );
}

你可能感兴趣的:(java)