You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
397 B

2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
  1. package com.gaotao.common.utils;
  2. import java.time.LocalDate;
  3. import java.time.temporal.ChronoUnit;
  4. public class GenDate {
  5. public static String dateToJuLian(LocalDate currentDate) {
  6. LocalDate excelStartDate = LocalDate.of(1904, 1, 1);
  7. long days = ChronoUnit.DAYS.between(excelStartDate, currentDate);
  8. int excelDate = (int) days;
  9. return excelDate+"09";
  10. }
  11. }