DSDSServer2024/src/main/java/cn/tsy/idsse/dsds/DSDSMain.java

20 lines
501 B
Java
Raw Normal View History

2024-06-11 18:40:19 +08:00
package cn.tsy.idsse.dsds;
import java.time.LocalDateTime;
import org.apache.poi.ss.usermodel.DateUtil;
import cn.hme.framework.helper.date.LocalDateHelper;
public class DSDSMain {
public static void main(String[] args) {
String value = "13.019202999999999";
// 2024-05-14 09:48:00
LocalDateTime date =LocalDateHelper.parseDate("1900-01-01").atStartOfDay();
System.out.println(LocalDateHelper.format(LocalDateHelper.toLocalDateTime(DateUtil.getJavaDate(45428.941666666702))));
;
}
}