
In this article, we will take a look at how to get the day of the week using the Java Date and Time API (Java 8 and above),
1. Get day of the week for LocalDateTime Object
With LocalDateTime you can make use of the getDayOfWeek() method to get the DayOfWeek,
import java.time.DayOfWeek;
import java.time.LocalDateTime;
public class Java8DayOfWeekExample1 {
public static void main(String[] args) {
LocalDateTime currentDateTime = LocalDateTime.now();
DayOfWeek dayOfWeek = currentDateTime.getDayOfWeek();
System.out.println(dayOfWeek);
}
}
SATURDAY
2. Get day of the week for LocalDate Object
import java.time.DayOfWeek;
import java.time.LocalDate;
public class Java8DayOfWeekExample2 {
public static void main(String[] args) {
LocalDate currentDateTime = LocalDate.now();
DayOfWeek dayOfWeek = currentDateTime.getDayOfWeek();
System.out.println(dayOfWeek);
}
}
MONDAY
3. Get day of the week for ZonedDateTime Object
import java.time.DayOfWeek;
import java.time.ZonedDateTime;
public class Java8DayOfWeekExample3 {
public static void main(String[] args) {
ZonedDateTime zonedDateTimeNow = ZonedDateTime.now();
DayOfWeek dayOfWeek = zonedDateTimeNow.getDayOfWeek();
System.out.println(dayOfWeek);
}
}
TUESDAY
4. Get day of the week for Instant Object
As Instant is associated with seconds or mill seconds, we need to convert it to a LocalDate/LocalDateTime/ZonalDateTime in order to get the week of the day!
import java.time.DayOfWeek;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
public class Java8DayOfWeekExample4 {
public static void main(String[] args) {
Instant instantNow = Instant.now();
DayOfWeek dayOfWeek = LocalDateTime.ofInstant(instantNow, ZoneId.of("UTC")).getDayOfWeek();
System.out.println(dayOfWeek);
}
SUNDAY
More Posts related to Java,
- How to install Java 11 on Mac
- Get Client IP address from HTTP Response in Java
- SharePoint Open in the client application document opens in browser
- How to verify if java is installed on the computer and get version detail
- Java - Check if array contains the value
- Your JBoss Application Server 7 is running However you have not yet added any users to be able to access the admin console
- How to run Java Unit Test cases with Apache Maven?
- What Java version is used for Minecraft 1.18
- List of jar files for Jax-ws (SOAP) based Java Web Services
- [Fix] Java Exception with Lambda - Cannot invoke because object is null
- Convert Instant timestamp into LocalDateTime Java Code Example
- Java - Calculate time taken for the code to execute in milliseconds or nanoseconds
- Create simple struts2 project using maven commands
- Java - PatternSyntaxException
- List of Online Java compiler with console
- Minecraft Java Edition
- How to declare and initialize Array in Java Programming
- [Solved] com.sun.xml.ws.transport.http.servlet.WSServletContextListener ClassNotFoundException
- Java XML-RPC 3.1.x based web service example
- Simple Struts 2 Tutorial in eclipse with tomcat 7 server
- Java 8 foreach loop code examples
- Java -Day of the week using Java 8 DayOfWeek Enum
- Java 8 - Convert List to Map Examples
- Java: TimeZone List with GMT/UTC Offset
- list of jars required for hibernate 4.x.x
More Posts:
- How to migrate SharePoint Designer 2010 workflow to Power Automate FLOW (Microsoft Office 365) - SharePoint
- Share image and text Twitter using your Android Application Programatically - Twitter
- [Microsoft Teams 4c7] Modern authentication failed here, but you'll still be able to sign in. Your status code is 4c7 error - Microsoft
- How to open terminal on Mac to run commands - MacOS
- Facebook, Messenger, and Instagram down in many regions - UK, Europe, Australia - Facebook