9 Nisan 2010 Cuma

Şuanki tarihin 6 ay sonrası tarihi getirmek

public static void main(String[] args) {


Calendar now = Calendar.getInstance();
now.add(Calendar.MONTH,6);

String altiAySonrasi =(now.get(Calendar.DATE) -1) + "/" + (now.get(Calendar.MONTH) + 1)+ "/"+ now.get(Calendar.YEAR);

System.out.println("Alti ay sonrasi : " + altiAySonrasi);

// Calendar now = Calendar.getInstance();
// System.out.println("Current date : " + (now.get(Calendar.MONTH) + 1)
// + "-"+ now.get(Calendar.DATE)+ "-" + now.get(Calendar.YEAR));
//
//
// now.add(Calendar.MONTH,6);
//
// System.out.println("date after 6 months : " + (now.get(Calendar.MONTH) + 1)+ "-"
// + (now.get(Calendar.DATE) -1) + "-"+ now.get(Calendar.YEAR));
//
// now = Calendar.getInstance();
// now.add(Calendar.MONTH, -5);
//
// System.out.println("date before 5 months : " + (now.get(Calendar.MONTH) + 1)
//
// + "-"+ now.get(Calendar.DATE) + "-"+ now.get(Calendar.YEAR));

}

Bugünün tarihi : 09/04/2010.....

Çıktısı : Alti ay sonrasi : 8/10/2010

kaynak: http://www.java-examples.com

Hiç yorum yok:

Yorum Gönder