LocalDate from(TemporalAccessor temporal)
creates an instance
of LocalDate from a temporal object.
from
has the following syntax.
public static LocalDate from(TemporalAccessor temporal)
The following example shows how to use from
.
import java.time.LocalDate; public class Main { public static void main(String[] args) { LocalDate a = LocalDate.from(LocalDate.now()); System.out.println(a); } }
The code above generates the following result.