How can I format-print the date returned by this
Calendar cal = Calendar.getInstance();
while(cal.get(Calendar.DAY_OF_WEEK) != Calendar.SUNDAY){
cal.add(Calendar.DAY_OF_WEEK, 1);
}
System.out.println("Next sunday is " + cal.getTime());
Basically, I want to print cal.getTime() in this format: yyyy-MM-dd
Note: I am new to Java.