Here you can find the source of getDayOrMonth(int value)
private static String getDayOrMonth(int value)
//package com.java2s; //License from project: Apache License public class Main { private static String getDayOrMonth(int value) { return String.format("%02d", value); }//from www . j a v a 2 s . c o m }