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
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!