Here you can find the source of getMonthTime(String allDate)
public static String getMonthTime(String allDate)
//package com.java2s; //License from project: Apache License public class Main { public static String getMonthTime(String allDate) { return allDate.substring(5, 16); }/*w w w .j av a 2s.c o m*/ }