摘要:
1,BigDecimal 如果非null, 则取值;如果是null, 则取 0: BigDecimal b; …… Optional.ofNullable(b).orElse(BigDecimal.ZERO); 阅读全文
摘要:
1, Date转LocalDate:new Date().toInstant().atZone(ZoneId.systemDefault()).toLocalDate() 2、計算兩個時間間隔的天數: String time1 = "2023 01 12 00:05:00"; String time 阅读全文