import java.util.Date;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.text.SimpleDateFormat;
public class test{
public static void main(String arg[]){
Date date=new Date();
SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd HH:MM:ss");
String date_str=df.format(date);
int isUpdate=0;
Connection conn=null;
PreparedStatement pstmt=null;
String sql="insert into test_A(table_time) values('"+date_str+"')";
System.out.println(date_str);
try{
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
conn = DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=test","sa","sa");
pstmt=conn.prepareStatement(sql);
isUpdate=pstmt.executeUpdate();
if(isUpdate==1){
System.out.println("ok");
}
else{
System.out.println("no");
}
}catch(Exception e){
e.printStackTrace();
}
}
}
java.util.Date类型所取出来的是一种当前时间的国际表示格式,要放在数据库里需要用simpledateformat这个类把他格式化一下然后插入.记得运行上面类的时候把类名还有你自己数据库的配置改掉~