Here you can find the source of fixMonth(int month)
public static String fixMonth(int month)
//package com.java2s; //License from project: Apache License public class Main { public static String fixMonth(int month) { return (month < 10 ? "0" : "") + month; }/*w w w.j a v a 2 s .c o m*/ }