Here you can find the source of formatTime(String timeStr)
private static String formatTime(String timeStr)
//package com.java2s; public class Main { private static String formatTime(String timeStr) { if (timeStr.length() == 1) { timeStr = "0" + timeStr; }//from ww w. j a v a2 s . co m return timeStr; } }