
In order to get the current date (without time zone) in ISO-8601 format (yyyy-MM-dd) you can make use of the LocalDate class from the Java 8 java.time package.
In the same way, to get the current time (without time zone) in ISO-8601 format (HH:mm:ss.S) format you can make use of the LocalTime class from the same java.time package.
package org.code2care;
import java.time.LocalDate;
import java.time.LocalTime;
/**
* Local date in yyyy-MM-dd format
* using Java 8 LocalDate now() method
*
* Local time in HH:mm:ss.S format
* using Java 8 LocalTime nome() method
*
*/
public class JavaDateTimeExamples {
public static void main(String[] args) {
//Local Date
LocalDate localDate = LocalDate.now();
System.out.println(localDate);
//Local Time
LocalTime localTime = LocalTime.now();
System.out.println(localTime);
}
}
Output:
2022-04-24
12:57:08.710499
And yes! If you want to get both Date and Time, you can make use of the class LocalDateTime from Java 8 java.time package, you will get the date-time in yyyy-MM-ddTHH:mm.s.S format
package org.code2care;
import java.time.LocalDateTime;
/**
* Local date & time using java 8
* LocalDateTime class now() method
*
*/
public class JavaDateTimeExamples {
public static void main(String[] args) {
//Local Date and Time
LocalDateTime localDateTime = LocalDateTime.now();
System.out.println(localDateTime);
}
}
Output:
2022-04-24T12:08:46.721044
- Error: Can not find the tag library descriptor for
- Create a Database Table using JDBC PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- Java Jackson with Maven Example
- [fix] Java JDBC ConnectException: Connection refused
- Spring Boot: Transactions Management with JDBCTemplate Example
- Java Get Current Date for a Specific Time Zone
- What are the 8 Primitive Data Types in Java
- Java JDBC: Insert Java 8 LocalDate and Time using PreparedStatement
- Maven Eclipse (M2e) No archetypes currently available
- How to Sort a LinkedList in Java
- [Fatal Error] XML The markup in the document following the root element must be well-formed.
- Split a String in Java with Examples
- Struts 2 : There is no Action mapped for namespace [/] and action name [form] associated with context path [/proj]
- Truncate table using Java JDBC Example
- Java: Generate random numbers within a range
- Parse XML file in Java using DOM Parser
- How to get Client IP address using Java Code Example
- JDBCTemplate Querying Examples with Spring Boot 3
- [Java Threads] Should we extend Thread Class or implement Runnable interface
- String Boot + Redis - SET and GET String Commands Examples
- Setting up Spring Boot 3 + Maven + MySQL + JDBC Example
- Spring Boot: JdbcTemplate Update Query With Parameters Example
- Java Split String by Spaces
- Unbound classpath container: JRE System Library [JavaSE-1.7]
- Install and Run Jupyter Notebook on Mac (macOS) - Python
- Cut, Copy and Paste Keyboard Shortcuts on Mac Keyboard - MacOS
- REST API to get all Jira projects - Postman, Basic Auth - Jira
- Pdf Text to Speech option in Mac OS X Preview App - Mac-OS-X
- Java -Day of the week using Java 8 DayOfWeek Enum - Java
- How to Scan iPhone for Virus? Is Antivirus it really required? - HowTos
- Python Program: Use NumPy to generate a random number between 0 and 1 - Python-Programs
- Microsoft Teams Error code - 6 issue - Teams