ZonedDateTime getDayOfMonth()
gets the day-of-month field.
getDayOfMonth
has the following syntax.
public int getDayOfMonth()
The following example shows how to use getDayOfMonth
.
import java.time.ZonedDateTime; public class Main { public static void main(String[] args) { ZonedDateTime dateTime =ZonedDateTime.now(); System.out.println(dateTime.getDayOfMonth()); } }
The code above generates the following result.