Posts by Roger Giacomelli Naves • 21 points
1 post
-
2
votes1
answer278
viewsQ: Check if a date is before or after other dates
I am using Java 7 and need to check if a date of birth is before or after certain dates. I’m doing like this: String str1 ="31/12/1960"; Date date1 = new SimpleDateFormat("dd/MM/yyyy").parse(str1);…