背景:
我最近写一个东西,前端突然提了一个需求,说需要统计最近七天的销售额,然后甩给我一张图,让我去实现接口。
我最开始的思路,就是通过时间差去查,虽然最后并不是用这个方式,但是在这里也记录一下这个知识,之前没懂。
也分享給大家。
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
class ShoppingkillApplicationTests {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
LocalDateTime then = now.minusDays(7);
System.out.println("now===>"+now);
System.out.println("then===>"+then);
}
}
// 输出
//now===>2021-07-01T20:00:48.760979500
//then===>2021-06-24T20:00:48.760979500