Current week number method

IS there any method which will return the current week number of the year.Please help.
[100 byte] By [pgshravan] at [2007-9-30 22:36:46]
# 1
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
bellyripper at 2007-7-7 12:59:27 > top of Java-index,Security,Event Handling...
# 2
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
uhilger at 2007-7-7 12:59:27 > top of Java-index,Security,Event Handling...
# 3
Thanks you very much.
pgshravan at 2007-7-7 12:59:27 > top of Java-index,Security,Event Handling...
# 4
No, thank *YOU* very much for double posting... What a waste of my time.... Geezus....
SurfManNL at 2007-7-7 12:59:27 > top of Java-index,Security,Event Handling...