我使用SimpleDateFormat將日期從dd-MM-yyyy轉換爲yyyy-MM-dd 但我沒有正確顯示年份。我試圖將18-5-2014轉換爲2014 -05-18 但我得到3914-05-18。不正確的日期轉換通過SimpleDateFormat
public void onDateSet(DatePicker view, int year,int monthOfYear, int dayOfMonth)
{
Date selectedDate = new Date(year,monthOfYear, dayOfMonth);
String strDate = null;
SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd");
strDate = dateFormatter.format(selectedDate);
txtdeliverydate.setText(strDate);
}
'selectedDate'中的值是多少? – Lal