查询当前为止的出生天数

Posted wtbk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询当前为止的出生天数相关的知识,希望对你有一定的参考价值。

package demo01;

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

public class demo28 {
public static void main(String[] args) throws ParseException{
//键盘录入出生年月日
Scanner sc = new Scanner(System.in);
System.out.print("请输入你的出生年月日:");
String chs = sc.nextLine();
//给定格式
SimpleDateFormat time = new SimpleDateFormat("yyyy-MM-dd");
//把字符串转换成日期
Date d = time.parse(chs);
//通过该日期得到毫秒值
long mytime = d.getTime();
//获取当前时间的毫秒值
long newtime = System.currentTimeMillis();
//用当前时间减去出生时间
long datetime = newtime-mytime;
//转换为天数
long day = datetime/1000/60/60/24;
//输出
System.out.print(day);
}
}

























以上是关于查询当前为止的出生天数的主要内容,如果未能解决你的问题,请参考以下文章

显示当前日期和两个特定日期之间天数的 SQL 查询

sql中,根据身份证号码截取出了出生日期,怎么获取当前年龄,精确到月、日?

JS 如何获取当前上一个月下一个月和月份所含天数

SQL 中怎么根据出生日期算出年龄 然后用年龄查询

PostgreSQL:查找到现在为止的连续天数

SQL Server 从当前日期计算天数,不包括另一个表中的天数