Java中如何从Date数据中获取Year,Month,Day等信息吗?
下文笔者讲述java中使用Date变量获取Year,Month,Day信息的方法分享,如下所示:
实现思路: 借助Calendar类即可从Date中获取相应的数据例:
Date date; // your date Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("Europe/Paris")); cal.setTime(date); int year = cal.get(Calendar.YEAR); int month = cal.get(Calendar.MONTH); int day = cal.get(Calendar.DAY_OF_MONTH);
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。