you can convert AD format date into a Date on this way:
long longDate = (Long.parseLong(adDate) / 10000L) - + 11644473600000L;
Date finalDate = new Date(longDate);
and later you can compare with a new Date()
you can convert AD format date into a Date on this way:
long longDate = (Long.parseLong(adDate) / 10000L) - + 11644473600000L;
Date finalDate = new Date(longDate);
and later you can compare with a new Date()