Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
TalendDate.getPartOfDate("DAY_OF_WEEK", TalendDate.getCurrentDate() );
ret = c.get(Calendar.DAY_OF_WEEK);
Calendar c = Calendar.getInstance();
c.setTime(TalendDate.getCurrentDate());
c.setFirstDayOfWeek(Calendar.MONDAY);
int rec = c.get(Calendar.WEEK_OF_MONTH);
System.out.println(rec);