For Example I have the date: \"23/2/2010\" (23th Feb 2010). I want to pass it to a function which would return the day of week. How can I do this?
I
Calendar class has build-in displayName functionality:
Calendar.getInstance().getDisplayName(Calendar.DAY_OF_WEEK, Calendar.SHORT, Locale.getDefault()); // Thu Calendar.SHORT -> Thu Calendar.LONG_FORMAT -> Thursday
Available since Java 1.6. See also Oracle documentation