I can convert the string to date, but when I want to convert the string in other type of data it is wrong.
String string = "1995 11 07";
SimpleDateFormat fmt = new SimpleDateFormat("cccc F MMMM yyyy", Locale.getDefault());
date = fmt.parse(string);
Toast.makeText(getContext(), date.toString(), Toast.LENGTH_LONG).show();
What is the correct practice?