Here you can find the source of get8charDateFormat()
public static SimpleDateFormat get8charDateFormat()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; public class Main { private static final String format8chars = "yyyyMMdd"; public static SimpleDateFormat get8charDateFormat() { return new SimpleDateFormat(format8chars); }/*from ww w . j a va 2 s . co m*/ }