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,885 questions

51,811 answers

573 users

How to determine day of week from current date in Java

1 Answer

0 votes
import java.util.Calendar;
import java.util.Date;
import java.time.Instant;

public class MyClass {
    public static void main(String args[]) {
        Calendar cal = Calendar.getInstance();

        cal.setTime(Date.from(Instant.now()));
        
        int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK);
        
        System.out.println(dayOfWeek);
    }
}
    
    
    
    
/*
run:
    
2
    
*/

 



answered Mar 7, 2022 by avibootz

Related questions

4 answers 204 views
1 answer 122 views
1 answer 222 views
1 answer 213 views
1 answer 220 views
...