私は次のものを持っています:
String[] string_dates = new String[10]
// read in strings formatted via fmt1 dd-MMM-yy)
Date[] date_dates = new Date[10];
for (int i = 0; i < 9; i++){
date_dates[i] = fmt1.parse(string_dates[i]);
date_dates[] の日付を dd-MM-yyyy にフォーマットする最も効率的な方法は何ですか? 最初にstrings_dates []の文字列をdd-MM-yyyyの形式に変換してから、それらを日付に読み取る必要がありますか? ありがとうございました。