Calendar now = Calendar.getInstance(); now.add(Calendar.MINUTE, 30);
And to output the time you could use
// 24 hours format SimpleDateFormat df = new SimpleDateFormat("HH:mm"); // AM/PM format SimpleDateFormat df = new SimpleDateFormat("hh:mm aa"); System.out.println(df.format(now.getTime()));
source share