Here you can find the source of getYearFromYM(String ym)
public static String getYearFromYM(String ym)
//package com.java2s; public class Main { public static final String DEFAULT_DATE_YM_FORMAT = "yyyyMM"; public static String getYearFromYM(String ym) { if (ym == null || ym.length() != DEFAULT_DATE_YM_FORMAT.length()) { return null; }/*w w w . ja v a 2 s . c om*/ return ym.substring(0, 4); } }