Here you can find the source of convertMonth(String value)
public static int convertMonth(String value)
//package com.java2s; //License from project: Apache License public class Main { public static int convertMonth(String value) { value = value.trim();//from w w w.java 2 s. c om return Integer.parseInt(value); } }