package com.feimao.test; import java.time.LocalDate; public class test { public static void main(String[] args) { LocalDate localDate = LocalDate.now(); System.out.println(localDate.getYear()+":"+localDate.getDayOfYear()+":"+localDate.getMonth()); } }