Java tutorial
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String month(Date now) { SimpleDateFormat sdfDate = new SimpleDateFormat("yyyy-MM"); String strDate = sdfDate.format(now); return strDate; } }