Java tutorial
//package com.java2s; //License from project: Open Source License import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static boolean expireDate(String date) { Date todayDate = null; Date inputDate = null; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); String today = sdf.format(new Date()); try { todayDate = sdf.parse(today); inputDate = sdf.parse(date); if (todayDate.compareTo(inputDate) <= 0) { return false; } else { return true; } } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); return false; } } }