日期天数计算
Posted 之墨_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日期天数计算相关的知识,希望对你有一定的参考价值。
天数计算
public class DateTest{
public static void main(String[] args) throws ParseException{
Scanner input = new Scanner(System.in);
System.out.println("请输入起始时间:(格式yyyy-MM-dd)");
String day1 = input.next();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
long before = sdf.parsen(day1).getTime();
long now = new Date().getTime();
long time = (now-before)/1000/60/60/24;
System.out.println(day1+"至今已有"+time+"天");
}
}
以上是关于日期天数计算的主要内容,如果未能解决你的问题,请参考以下文章