SimpleDateFormat "W" defaults to SUNDAY - the first day of the week, for example:
SimpleDateFormat f = new SimpleDateFormat("W");
format.f(new Date());
I want to set "W" the first day on MONDAY, I try:
SimpleDateFormat f = new SimpleDateFormat("W");
Calendar c=Calendar.getInstance();
c.setTimeInMillis(input);
c.setFirstDayOfWeek(Calendar.MONDAY);
format.format(c.getTime())
but no effect. help me, thanks!
Koerr source
share