Here you can find the source of compareDate(String date0, String date1)
public static int compareDate(String date0, String date1)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.*; public class Main { public static int compareDate(String date0, String date1) { SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy"); try {//from w w w . ja v a 2 s .c o m Date dt0 = sdf.parse(date0); Date dt1 = sdf.parse(date1); return dt0.compareTo(dt1); } catch (Exception ex) { ex.printStackTrace(); return 1; } } }