Here you can find the source of now()
public static LocalDate now()
//package com.java2s; //License from project: Open Source License import java.time.LocalDate; import java.time.ZoneId; public class Main { public static ZoneId EUROPE_PARIS = ZoneId.of("Europe/Paris"); /**//from w w w . j av a2s . co m * Get localized LocalDate, using Europe / Paris time zone. */ public static LocalDate now() { return LocalDate.now(EUROPE_PARIS); } }