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
.
toString
has the following syntax.
public String toString()
The following example shows how to use toString
.
import java.time.LocalDate; /*from w w w .j a v a2 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.