博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Calendar日期方法
阅读量:6705 次
发布时间:2019-06-25

本文共 2272 字,大约阅读时间需要 7 分钟。

面试居然让我获取当前月份第一天跟最后一天,主要是尴尬的回答不上来。

废话不说,直接贴代码,工作应该是够用了

public class TestCalendar {    // 日期也就是这了    public static void main(String[] args) {        // 获取当前年份、月份、日期        Calendar cale = null;        cale = Calendar.getInstance();        int year = cale.get(Calendar.YEAR);        int month = cale.get(Calendar.MONTH) + 1;        int day = cale.get(Calendar.DATE);        int hour = cale.get(Calendar.HOUR_OF_DAY);        int minute = cale.get(Calendar.MINUTE);        int second = cale.get(Calendar.SECOND);        int dow = cale.get(Calendar.DAY_OF_WEEK);        int dom = cale.get(Calendar.DAY_OF_MONTH);        int doy = cale.get(Calendar.DAY_OF_YEAR);        System.out.println("Current Date: " + cale.getTime());        System.out.println("Year: " + year);        System.out.println("Month: " + month);        System.out.println("Day: " + day);        System.out.println("Hour: " + hour);        System.out.println("Minute: " + minute);        System.out.println("Second: " + second);        System.out.println("Day of Week: " + dow);        System.out.println("Day of Month: " + dom);        System.out.println("Day of Year: " + doy);        // 获取当月第一天和最后一天        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");        String firstday, lastday;        // 获取前月的第一天        cale = Calendar.getInstance();        cale.add(Calendar.MONTH, 0);        cale.set(Calendar.DAY_OF_MONTH, 1);        Date time = cale.getTime();        firstday = format.format(cale.getTime());        // 获取前月的最后一天        cale = Calendar.getInstance();        cale.add(Calendar.MONTH, 1);        cale.set(Calendar.DAY_OF_MONTH, 0);        lastday = format.format(cale.getTime());        Date time2 = cale.getTime();        System.out.println(time);        System.out.println(time2);        System.out.println("本月第一天和最后一天分别是 : " + firstday + " and " + lastday);        // 获取当前日期字符串        Date d = new Date();        System.out.println("当前日期字符串1:" + format.format(d));        System.out.println("当前日期字符串2:" + year + "/" + month + "/" + day + " " + hour + ":" + minute + ":" + second);        SimpleDateFormat format2 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");        System.out.println(format2.format(d));    }}

到位!!!都属于基础,记一下罢了。

转载于:https://www.cnblogs.com/chywx/p/9256087.html

你可能感兴趣的文章
Semaphore实现Andoird版源代码剖析
查看>>
使用gSoap规避和改动ONVIF标准类型结构的解析
查看>>
架构设计之策略模式
查看>>
hdu 5400 Arithmetic Sequence(模拟)
查看>>
求职(2015南京站获得百度、美的集团、趋势科技、华为offer)
查看>>
压测 apache ab 初探
查看>>
设计数据结构O1 insert delete和getRandom
查看>>
视图(View)与部分视图(Partial View)之间数据传递
查看>>
漫谈程序猿系列:群星闪耀的黄金时代
查看>>
使用Spring Session做分布式会话管理
查看>>
mongodb的NUMA问题
查看>>
js进阶 12-14 jquery的事件触发函数是哪两个
查看>>
网速4M等于多少KB/S,等于多少kbps
查看>>
MySQL MERGE存储引擎 简介
查看>>
atitit。自己定义uml MOF EMF体系eclipse emf 教程o7t
查看>>
atitit.taskService 任务管理器的设计 v1
查看>>
编写jquery插件的分享
查看>>
机器学习 —— 概率图模型(学习:对数线性模型)
查看>>
2016百度编程题:蘑菇阵
查看>>
解决教学问题新感悟
查看>>