
{filelink=136}
/***** Code de MesExemples.com *******/
import java.text.SimpleDateFormat;
import java.util.Date;
class FormatAnnee {
public static void main(String[] args)
{
Date date = new Date();
//Format 1
String strDateFormat = "yy";
SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat);
System.out.println("Année en Format yy : " + sdf.format(date));
//Format 2
strDateFormat = "yyyy";
sdf = new SimpleDateFormat(strDateFormat);
System.out.println("Année en format yyyy : " + sdf.format(date));
}
}
/*
Année en Format yy : 13
Année en format yyyy : 2013
*/