1-3练习

该代码示例展示了如何使用Java8的日期时间API(LocalDate,DateTimeFormatter)计算个人的年龄(以天和年为单位)以及将当前日期转换为指定格式的字符串。同时,还演示了判断特定日期是星期几的方法。
摘要由CSDN通过智能技术生成

1. 请使用日期时间相关的API,计算出一个人已经出生了多少年,再转换为多少天(一年365天)。

public class Test {

public static void main(String[] args) throws ParseException {

// 1. 请使用日期时间相关的API,计算出一个人已经出生了多少年,再转换为多少天(一年365天)。

Scanner sc=new Scanner(System.in);

SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd");

System.out.println("请输入出生日期 2018-10-13");

String birthday=sc.next();

DateTimeFormatter dtf=DateTimeFormatter.ofPattern("yyyy-MM-dd");

LocalDate localDate=LocalDate.parse(birthday,dtf);

System.out.println(localDate);

Date date1=sdf.parse(birthday);

Date now = new Date(System.currentTimeMillis());

int day=(int)((now.getTime()-date1.getTime())/1000/3600/24);

int year=day/365;

System.out.println(day);

System.out.println(year);

}

}

2. 获取当前的日期,并把这个日期转换为指定格式的字符串

如2088-08-08 08:08:08

public class Test {

public static void main(String[] args) throws ParseException {

LocalDateTime localDate=LocalDateTime.now();

DateTimeFormatter def=DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");

String str1=localDate.format(def);

System.out.println(str1);

}

}

3. 判断2018年2月14日是星期几

public class Test {

public static void main(String[] args) throws ParseException {

LocalDate localDate=LocalDate.of(2018,2,14);

int day=localDate.get(ChronoField.DAY_OF_WEEK);

System.out.println(day);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值