Here you can find the source of getYYYYMM()
public static SimpleDateFormat getYYYYMM()
//package com.java2s; /*// w w w. jav a 2 s. c o m * Copyright (C) 2010 Viettel Telecom. All rights reserved. * VIETTEL PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ import java.text.SimpleDateFormat; public class Main { /** * * @return SimpleDateFormat */ public static SimpleDateFormat getYYYYMM() { SimpleDateFormat yyyymm = new SimpleDateFormat("yyyyMM"); return yyyymm; } }