日付とタイムスタンプを含むデータベースから日付を取得します。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) も試してみました..うまくいきませんでした。それを行う方法はありますか?