正在开展一个需要用户选择所需时间的项目。我使用了JSpinner来启用一个选择时间。 时间和日期都插入数据库,但我只想插入时间。 请帮助我。
答案 0 :(得分:-1)
这是答案,我需要使用SimpledateFormat格式化我的微调器值。
SimpleDateFormat sdf=new SimpleDateFormat("kk:mm:ss");
sdf.setTimeZone(TimeZone.getDefault());
String da=sdf.format(tme.getValue());
pst.setString(1, da);
pst.execute();