Java Programming - null

Today is March 28. I would like something, somehow return me the first day of this week (March 25) and the last day of this week (March 31), considering that Sunday is the first day of the week and Saturday is the last day of the week.Thanks!!
[257 byte] By [ariane.felix@gmail.coma] at [2007-11-26 23:13:56]
# 1
java.util.Calendar
suparenoa at 2007-7-10 14:12:21 > top of Java-index,Java Essentials,Java Programming...
# 2
of course it's Calendar. But I want to know how do I do it using Calendar.
ariane.felix@gmail.coma at 2007-7-10 14:12:21 > top of Java-index,Java Essentials,Java Programming...
# 3
public Calendar getLastDayOfThisWeek() {Calendar cal = Calendar.getInstance();cal.add(Calendar.DAY_OF_YEAR, 8 - cal.get(Calendar.DAY_OF_WEEK));return cal;}Regards,Byurhan
bhyuseina at 2007-7-10 14:12:21 > top of Java-index,Java Essentials,Java Programming...