Mysql datetime到Calendar

时间:2012-02-18 10:32:53

标签: java date jdbc

我的代码:

Calendar c = Calendar.getInstance();    
c.setTime(res.getDate("my_date")); //res is ResultSet

System.out.println(c.getTime());
System.out.println(res.getString("my_date"));

输出:

Thu Oct 11 00:00:00 IST 2012 
2012-10-11 02:50:00.0

在日历中,它没有考虑时间部分。我使用日历是因为我必须进行一些比较。

为什么省略时间部分?

1 个答案:

答案 0 :(得分:2)

你应该使用类似的东西:

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
out.println(sdf.format(rs.getTimestamp("your_date_field").getTime()));

顺便说一句,您必须创建一个适合您的SQL日期格式的SimpleDateFormat。