Here you can find the source of toLocalDate(String date)
public static LocalDate toLocalDate(String date)
//package com.java2s; //License from project: Open Source License import java.time.LocalDate; import java.time.format.DateTimeFormatter; public class Main { private static final DateTimeFormatter DATE_FORMAT = DateTimeFormatter.ofPattern("yyyy/MM/dd"); public static LocalDate toLocalDate(String date) { return LocalDate.parse(date, DATE_FORMAT); }/*from w w w . j ava2 s . c om*/ }