Java Date Time - LocalDate from(TemporalAccessor temporal) example








LocalDate from(TemporalAccessor temporal) creates an instance of LocalDate from a temporal object.

Syntax

from has the following syntax.

public static LocalDate from(TemporalAccessor temporal)

Example

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.