Android examples for java.util:Month
get Current Month End Time
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class Main { private final static SimpleDateFormat shortSdf = new SimpleDateFormat( "yyyy-MM-dd"); private final static SimpleDateFormat longSdf = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss"); public static Date getCurrentMonthEndTime() { Calendar c = Calendar.getInstance(); Date now = null;//from w w w . j a v a 2s.co m try { c.set(Calendar.DATE, 1); c.add(Calendar.MONTH, 1); c.add(Calendar.DATE, -1); now = longSdf.parse(shortSdf.format(c.getTime()) + " 23:59:59"); } catch (Exception e) { e.printStackTrace(); } return now; } }