Java tutorial
//package com.java2s; import java.util.Calendar; public class Main { public static String getCurrentTimeSeconds(Calendar c) { int seconds = c.get(Calendar.SECOND); if (seconds < 10) { return "0" + seconds; } else { return "" + seconds; } } }