-3

我想在 MS Access 中添加一些日期和时间,但我的日期和时间变量是一个字符串。IE

String dt="12/2/2014 9:00 PM"; //this is selected from a calender component and a ComboBox

而 MS Access 字段的类型是(日期/时间)。如何将我的字符串转换为日期/时间类型,以便将其插入到字段中?你能用几行代码说明一下吗?因为我不是java专家。像我想要的东西:

step1:将字符串转换为日期时间字段

step2:statement.executeUpdate(插入表(日期时间)值(??????)

4

1 回答 1

2

步骤:1 将字符串转换为日期时间字段:

SimpleDateFormat df = new SimpleDateFormat("MM/dd/yyyy hh:mm a");
String stringDate = "12/2/2014 9:00 PM";
java.util.Date date = df.parse(stringDate);

这将为您提供字符串中的日期。有关 SimpleDateFormat 的更多详细信息,请参阅 API 文档

第2步:

String query = "Insert into table MyTable(dateColumn) Values(?)";
PreparedStatement ps  = connection.prepareStatement(query);
ps.setTimestamp(1,new java.sql.Timestamp(date.getTime()));
ps.executeUpdate();

以下是有关使用准备好的语句的更多详细信息

于 2013-01-17T09:27:42.917 回答