我保存的是Calendar类型的时间精确到时分秒,数据库的时间数据为2013/5/31 11:31:57,可在查询输出结果时,后面的时分秒都是零是怎么回事?如何才能正确获取输出数据库的时间? 我的测试代码是这样写的 Calendar c = Calendar.getInstance(); c = tr.getTr_time(); SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String time = sdf1.format(c.getTime()); System.out.println(time); c = tr.getTr_time();的Tr_time是数据库的时间字段 输出结果是 2013-05-31 00:00:00