Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,859 questions

51,780 answers

573 users

How to check if date1 is before date2 in Java

3 Answers

0 votes
import java.util.Date;
 
public class CompareDates {

    public static void main(String[] args) {
       
        Date date1 = new Date(); // current date
        Date date2 = new Date(System.currentTimeMillis() + 1000000); // future date

        if (date1.before(date2)) {
            System.out.println("date1 is before date2");
        } else {
            System.out.println("date1 is not before date2");
        }
    }
}


/*
run:

date1 is before date2

*/

 



answered Jun 8, 2025 by avibootz
0 votes
import java.time.LocalDate;
 
public class CompareDates {

    public static void main(String[] args) {

        LocalDate date1 = LocalDate.of(2025, 6, 1); // June 1, 2025
        LocalDate date2 = LocalDate.of(2025, 6, 14); // June 14, 2025

        if (date1.isBefore(date2)) {
            System.out.println("date1 is before date2");
        } else {
            System.out.println("date1 is not before date2");
        }
    }
}


/*
run:

date1 is before date2

*/

 



answered Jun 8, 2025 by avibootz
0 votes
import java.time.LocalDateTime;
 
public class CompareDates {

    public static void main(String[] args) {

        LocalDateTime date1 = LocalDateTime.of(2025, 6, 1, 10, 0); // June 1, 2025, 10:00 AM
        LocalDateTime date2 = LocalDateTime.of(2025, 6, 15, 10, 0); // June 15, 2025, 10:00 AM

        if (date1.isBefore(date2)) {
            System.out.println("date1 is before date2");
        } else {
            System.out.println("date1 is not before date2");
        }
    }
}


/*
run:

date1 is before date2

*/

 



answered Jun 8, 2025 by avibootz

Related questions

1 answer 62 views
1 answer 67 views
1 answer 61 views
1 answer 65 views
1 answer 66 views
3 answers 120 views
...