利用Date类计算生活时间

Posted yltzxzy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用Date类计算生活时间相关的知识,希望对你有一定的参考价值。

今天学习到了Date类还有其他一些常用类!

这里就简单使用Date及其一些方法计算生活时间。

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;

public class DateInput {
    public static void main(String[] args) throws ParseException {
        Scanner scanner = new Scanner(System.in);

//        System.out.print("请输入出生年份(xxxx):");
//        String next1 = scanner.next();
//        System.out.print("请输入出生月份(xx):");
//        String next2 = scanner.next();
//        System.out.print("请输入当月号数(xx):");
//        String next3 = scanner.next();
//        String time=next1+"年"+next2+"月"+next3+"日";

        System.out.print("请输入出生年月日(xxxx年xx月xx日):");
        String time=scanner.next();
        
        SimpleDateFormat format = new SimpleDateFormat("yyyy年MM月dd日");
        Date date = new Date();
        Date s=format.parse(time);
        long tm=date.getTime()-s.getTime();
        System.out.println("您已出生"+tm/1000/60/60/24+"天!"+
                "\n约"+tm/1000/60/60/24/365+"年!");
    }
}

 

以上是关于利用Date类计算生活时间的主要内容,如果未能解决你的问题,请参考以下文章

java中Date类DateFormat及SimpleDateFormat简介

java中Date类DateFormat及SimpleDateFormat简介

带有神秘附加字符的 Javascript Date getTime() 代码片段

bootspring???????????????Date??????????????????????????????????????????????????????????????????(代码片段

QuantLib 金融计算——基本组件之 Date 类

Java Date 时间类的使用