Here you can find the source of parseLocalDate(String localDate)
Parameter | Description |
---|---|
localDate | 2016-07-14 |
public static LocalDate parseLocalDate(String localDate)
//package com.java2s; //License from project: Apache License import java.time.LocalDate; import java.time.format.DateTimeFormatter; public class Main { /**/* ww w .j a v a 2s .c o m*/ * * @param localDate 2016-07-14 * @return */ public static LocalDate parseLocalDate(String localDate) { DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); return LocalDate.parse(localDate, formatter); } }