java.util.Calendar class is the one you need. You can create new instance ahd then get(...) the field you needCheck the java.util.Calendar API for more InfoHTHMike
from the API docs on class GregorianCalendarSystem.out.println("WEEK_OF_YEAR: " + calendar.get(Calendar.WEEK_OF_YEAR));see http://java.sun.com/j2se/1.4.2/docs/api/java/util/GregorianCalendar.html