Menambahkan Hari, Bulan Dan Tahun Pada Tanggal

1. Menambahkan 1 Hari

Calendar cal = Calendar.getInstance();
cal.setTime(new Date(2011, 8, 30));
cal.add(Calendar.DAY_OF_MONTH, 1);

2. Menambahkan 1 Bulan

Calendar cal = Calendar.getInstance();
cal.setTime(new Date(2011, 8, 30));
cal.add(Calendar.MONTH, 1);

3. Menambahkan 1 Tahun

Calendar cal = Calendar.getInstance();
cal.setTime(new Date(2011, 8, 30));
cal.add(Calendar.YEAR, 1);

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Anti-Spam Quiz: