我从数据库中获取日期,其中包含日期和时间戳,在 UI 中它同时显示日期和时间戳,但我只想显示日期(yyyy-MM-dd)。我已经完成了更改,但我无法正确设置。
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
String startDate = dateFormat.format(dataObj.getReportStartDate());
//The above startDate will be of the format : 2012-11-08
我希望将 String 格式的 startDate 设置为 Date 数据类型。
dataIndexObj.setReportStartDate(startDate);
// Here the setReportStartDate is of the type date(), I cannot change its type to string.
我也尝试过 parse(startDate) 。它没有用。知道怎么做吗?