No es recomendable usar Date , como han dicho esta deprecate, podrías hacer lo siguiente
Código (java) [Seleccionar]
import java.util.*;
class MyCalendario extends GregorianCalendar{
public MyCalendario(int year, int month, int date ){
super(year,month,date);
}
public MyCalendario(){
}
public String toString(){
return (this.get(Calendar.DAY_OF_MONTH) + " / "+ this.get(Calendar.MONTH)+ " / " + this.get(Calendar.YEAR));
}
}
class PruebaCalendario{
public static void main(String []arg){
MyCalendario cal = new MyCalendario();
System.out.println(cal);
}
}