In my android app i need to convert a date from 'Jan 2017,20' this format to '19-1-2017'.The date is selected from the Date Picker in '19-1-2017' format and stored in MySQL db as 'Jan 2017,20'.When i take the date value from database i need to convert the date 'Jan 2017,20' format back to '19-1-2017'. is there any way to do this? thanks in advance. please help.
datepicker code
edit_meeting_date.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
final Calendar c=Calendar.getInstance();
mYear=c.get(Calendar.YEAR);
mMonth=c.get(Calendar.MONTH);
mDay=c.get(Calendar.DAY_OF_MONTH);
DatePickerDialog datePickerDialog=new DatePickerDialog(getActivity(), new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker datePicker, int year, int monthofYear, int dayofMonth) {
System.out.println("dayofMonth :"+dayofMonth+"\nmonthofYear : "+(monthofYear+1)+"\nyear : "+year);
edit_meeting_date.setText(dayofMonth+"-"+(monthofYear+1)+"-"+year);
}
},mYear,mMonth,mDay);
datePickerDialog.getDatePicker().setMinDate(c.getTimeInMillis());
datePickerDialog.show();
}
});
Use SimpleDateFormat