Here you can find the source of formatMonthDay(int decimal)
public static String formatMonthDay(int decimal)
//package com.java2s; //License from project: Apache License import java.text.DecimalFormat; public class Main { public static String formatMonthDay(int decimal) { DecimalFormat df = new DecimalFormat("00"); return df.format(decimal); }/*from ww w . ja v a 2 s. com*/ }