Here you can find the source of getDateYyyyMmWithoutDash()
public static String getDateYyyyMmWithoutDash()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getDateYyyyMmWithoutDash() { SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMM"); return simpleDateFormat.format(new Date()); }//from ww w . ja v a2s. co m }