Here you can find the source of getTargetMonth(Integer targetYm)
public static String getTargetMonth(Integer targetYm)
//package com.java2s; //License from project: Open Source License public class Main { public static String getTargetMonth(Integer targetYm) { return targetYm.toString().substring(4, 6); }// w ww. j a v a2 s . c o m }