LocalDate toString() example
Description
LocalDate toString()
returns this date as a String, such as 2007-12-03.
The output will be in the ISO-8601 format uuuu-MM-dd
.
Syntax
toString
has the following syntax.
public String toString()
Example
The following example shows how to use toString
.
import java.time.LocalDate;
// www . j a v a 2 s .c o m
public class Main {
public static void main(String[] args) {
LocalDate l = LocalDate.now();
System.out.println(l);
}
}
The code above generates the following result.