I would like to get day of week from day of month.
For example:
I have a date: 2014-09-10 13:45:20
I parse this and get the day of month which is 10.
Now i would like to know, that the 10. (tenth) day of the 9. month (September) in the year of 2014 is which day of the week?
Just like Calendar.getInstance().get(Calendar.DAY_OF_WEEK);
which is returns 1 for Monday, 2 for Tuesday, 3 for Wednesday... etc