首先先转换成SimpleDateFormat类型
SimpleDateFormat f = new SimpleDateFormat("yyyyMMddhhmmssSSS");
//此处“yyyy年MM月dd日hh时mm分ss秒SSS毫秒”根据需要选取时间
int begin= Integer.parseInt(f.format(a).toString());//a为Date类型
int end= Integer.parseInt(f.format(b).toString());//b为Date类型
if(begin>end){
System.out.println(a+“时间大于”+b+“时间”);
}