如何为我使用 DatePicker 选择的日期对象添加时间。日期选择器默认设置00:00:00
为我的日期对象的时间,我需要将当前系统时间添加到我的日期对象。
Calendar now = Calendar.getInstance();
int hours = now.get(Calendar.HOUR_OF_DAY);
int minutes = now.get(Calendar.MINUTE);
int seconds = now.get(Calendar.SECOND);
//int hours = new Time(System.currentTimeMillis()).getHours();
//int minutes = new Time(System.currentTimeMillis()).getMinutes();
//int seconds = new Time(System.currentTimeMillis()).getSeconds();
now.set(year, month, day, hours, minutes, seconds);
textDateField.setText(getDateAsString(now.getTime()));
我正在使用日期选择器并单击设置按钮,我得到显示在字段中的日期,但日期对象没有时间。我怎样才能用我的日期对象附加时间。
public static String getDateAsString(Date date) {
SimpleDateFormat format = new SimpleDateFormat("dd MMM yyyy");
return format.format(date);
}
以上是我尝试过的,但没有奏效。