Here you can find the source of getMonthFromDate(String date)
public static String getMonthFromDate(String date)
//package com.java2s; //License from project: Open Source License public class Main { public static String getMonthFromDate(String date) { int index = date.lastIndexOf("-"); return date.substring(0, index); }/*from w w w. java2 s . c o m*/ }