Here you can find the source of formatDate(String mounthStr)
public static String formatDate(String mounthStr)
//package com.java2s; public class Main { public static String formatDate(String mounthStr) { return mounthStr.substring(2, 4) + "/" + mounthStr.substring(4, 6) + "/" + mounthStr.substring(6, 8) + " " + mounthStr.substring(8, 10) + ":" + mounthStr.substring(10, 12); }//from w w w.j a v a 2s . com }