Here you can find the source of formatMusicTime(int time)
public static String formatMusicTime(int time)
//package com.java2s; //License from project: Open Source License public class Main { public static String formatMusicTime(int time) { String string;/* ww w . j a va2s. c om*/ if (time < 10) { string = "0" + time; } else { string = String.valueOf(time); } return string; } }