Here you can find the source of getMMdd()
public static SimpleDateFormat getMMdd()
//package com.java2s; /*/*from ww w .j a va 2 s . c om*/ * 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 getMMdd() { SimpleDateFormat mmdd = new SimpleDateFormat("MM/dd"); return mmdd; } }