In Java 8 and later versions, you can use the DateTimeFormatter class with the LocalDate class from the java.time package to convert a String to a LocalDate object. Here are some examples:
Example 1:
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class StringToLocalDateExample1 {
public static void main(String[] args) {
// String containing date in format yyyy-MM-dd
String str = "2023-03-26";
// Creating DateTimeFormatter instance with pattern
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
// Parsing the date String into LocalDate object using formatter
LocalDate date = LocalDate.parse(str, formatter);
System.out.println("LocalDate object: " + date);
}
}
Example 2:
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class StringToDateTimeExample2 {
public static void main(String[] args) {
String strDate = "Sunday, March 26, 2023 11:00:30 AM";
String dateFormat = "EEEE, MMMM d, yyyy hh:mm:ss a";
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern(dateFormat);
LocalDateTime localDateTime = LocalDateTime.parse(strDate, dateTimeFormatter);
System.out.println(localDateTime);
}
}
Output: 2023-03-26T11:00:30
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Deep Dive into Java 8 Predicate Interface
- Read and Parse XML file using Java DOM Parser [Java Tutorial]
- Java 8 Predicate Functional Interface isEqual() Method Example
- Convert Multidimensional Array toString In Java
- How to read int value using Scanner Class Java
- Spring Boot AI + LLM + Java Code Example
- Write to a File using Java Stream API
- Implementing Bubble Sort Algorithm using Java Program
- How to Fix XmlBeanDefinitionStoreException in Java SpringBoot ApplicationConfig.xml
- YAML Parser using Java Jackson Library Example
- [Fix] java: integer number too large compilation error
- Convert JSON String to Java GSON Object Example
- Read a file using Java 8 Stream
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Pretty Print JSON String in Java Console Output
- Java JDBC with Join Queries Example
- How to Check For Updates on Windows 11 (Step-by-Step)
- [Fix] java.net.MalformedURLException: unknown protocol
- How to display date and time in GMT Timezone in Java
- Error: LinkageError occurred while loading main class UnsupportedClassVersionError [Eclipse Java]
- How to convert a String to Java 8 Stream of Char?
- RabbitMQ Queue Listener Java Spring Boot Code Example
- 5+ Fibonacci number Series Java Program Examples [ 0 1 1 2 3 ..]
- Handling NullPointerException with Java Predicate
More Posts:
- [fix] Java Spring Boot JPA SQLSyntaxErrorException: Encountered user at line 1 column 14 - Java
- Todays Apple Spring Loaded Event Live Updates - Apple
- [fix] MySQL cj jdbc CommunicationsException: Communications link failure - Java
- Ways to Initialize HashMap Collection in Java - Java
- How to Remove All Terminated Console tabs at once in Eclipse - Eclipse
- List all Username and User ID using Bash Command - Bash
- [Updated] macOS 13 Ventura Supported Mac Devices List - MacOS
- What is HTTP 500 Internal Server Error Code on web browsers - HowTos