
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
- Add two numbers using Java Generics
- Convert Java List to Json String using Jackson
- Convert Java Object to JSON using Jackson Library
- Java SE JDBC: Insert with PreparedStatement Example
- [Program] How to read three different values using Scanner in Java
- Java JDBC Batch Update Example with PreparedStatement
- Java Stream flatmap() Examples
- Save Java Object as JSON file using Jackson Library
- Java get day of the week as an int using DayOfWeek
- Create Nested Directories using Java Code
- Java JDBC Delete a Record in Database Table using PreparedStatement
- List of jars required for Struts2 project
- Convert Java Object to XML using Jackson Library
- Struts2 : java.lang.ClassNotFoundException: org.apache.commons.fileupload.RequestContext
- Java JDBC Get Id of the Inserted Record with AutoIncrement
- How to list all tables using Java JDBC
- Java Jackson ObjectMapper Class with Examples
- Fix: Maven - Failed to execute goal - Compilation failure - Source/Target option 5 is no longer supported. Use 7 or later
- Eclipse : The type java.lang.CharSequence cannot be resolved. Indirectly referenced from required .class files
- Formatting Double in Java [Examples]
- How to run Java Unit Test cases with Apache Maven?
- [fix] NullPointerException Cannot Invoke findById because Repository is null - Java Spring
- [Fix] java: integer number too large compilation error
- [Java] Read a File with UTF-8 Encoding
- How to detect Operating System using Java code
- Using Document Map in Notepad++ - NotepadPlusPlus
- Convert JSON to XML using Java Jackson Library - Java
- Fix Something went wrong 0xCAA20004 [Microsoft Teams] - Teams
- How to know file encoding in Microsoft Windows Notepad? - Microsoft
- How to add Back Button on Toolbar in Android [Tutorial] - Android
- [fix] Error response from daemon: conflict unable to remove repository reference ubuntu container is using its referenced image - Docker
- Fix NVIDIA GeForce Experience ERROR CODE 0x0003 - HowTos
- How to save a file as csv in Windows Notepad? - Microsoft