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

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

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

Disclosure: My content contains affiliate links.

43,181 questions

56,073 answers

573 users

How to convert Date() to LocalDate in Java

3 Answers

0 votes
import java.util.Date;
import java.time.LocalDate;
import java.time.ZoneId;

public class MyClass {
    public static void main(String args[]) {
        Date now = new Date();
        
        LocalDate ld = now.toInstant()
                          .atZone(ZoneId.systemDefault())
                          .toLocalDate();

        System.out.println(ld);
    }
}




/*
run:

2022-03-05

*/

 



answered Mar 5, 2022 by avibootz
0 votes
import java.time.LocalDate;
import java.util.Date;

public class MyClass {
    public static void main(String args[]) {
        Date now = new Date();
        
        LocalDate ld =  LocalDate.of(now.getYear() + 1900, 
                                     now.getMonth() + 1, 
                                     now.getDate()); 

        System.out.println(ld);
    }
}




/*
run:

2022-03-05

*/

 



answered Mar 5, 2022 by avibootz
0 votes
import java.time.LocalDate;

public class MyClass {
    public static void main(String args[]) {
        LocalDate ld = new java.sql.Date(new java.util.Date().getTime()).toLocalDate();

        System.out.println(ld);
    }
}




/*
run:

2022-03-05

*/

 



answered Mar 5, 2022 by avibootz

Related questions

...