`
fyumin
  • 浏览: 6196 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

java获得当前年、月、季度、周、日、时日期时间代码

    博客分类:
  • java
阅读更多

package com.util.date;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

/**
 * User: 冯玉敏
 * Date: 11-8-9
 * Time: 下午1:23
 */
public class DateUtil {
    private static SimpleDateFormat bigLongSdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSSS");
    private static SimpleDateFormat hourSdf = new SimpleDateFormat("HH");
    private static SimpleDateFormat minutesSdf = new SimpleDateFormat("mm");
    private static SimpleDateFormat shortSdf = new SimpleDateFormat("yyyy-MM-dd");
    private static SimpleDateFormat longHourSdf = new SimpleDateFormat("yyyy-MM-dd HH");
    private static SimpleDateFormat longSdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");


    /**
     * 获得本周的第一天,即周日
     *
     * @return
     */
    public static Date getCurrentWeekDayStartTime() {
        Calendar c = Calendar.getInstance();
        try {
            int weekday = c.get(Calendar.DAY_OF_WEEK) - 1;
            c.add(Calendar.DATE, -weekday);
            c.setTime(longSdf.parse(shortSdf.format(c.getTime()) + " 00:00:00"));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return c.getTime();
    }

    /**
     * 获得本周的最后一天,即本周六
     *
     * @return
     */
    public static Date getCurrentWeekDayEndTime() {
        Calendar c = Calendar.getInstance();
        try {
            int weekday = c.get(Calendar.DAY_OF_WEEK);
            c.add(Calendar.DATE, 7 - weekday);
            c.setTime(longSdf.parse(shortSdf.format(c.getTime()) + " 23:59:59"));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return c.getTime();
    }

    /**
     * 获得本天的开始时间,即2012-01-01 00:00:00
     *
     * @return
     */
    public static Date getCurrentDayStartTime() {
        Date now = new Date();
        try {
            now = shortSdf.parse(shortSdf.format(now));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return now;
    }

    /**
     * 获得本天的结束时间,即2012-01-01 23:59:59
     *
     * @return
     */
    public static Date getCurrentDayEndTime() {
        Date now = new Date();
        try {
            now = longSdf.parse(shortSdf.format(now) + " 23:59:59");
        } catch (Exception e) {
            e.printStackTrace();
        }
        return now;
    }

    /**
     * 获得本小时的开始时间,即2012-01-01 23:59:59
     *
     * @return
     */
    public static Date getCurrentHourStartTime() {
        Date now = new Date();
        try {
            now = longHourSdf.parse(longHourSdf.format(now));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return now;
    }

    /**
     * 获得本小时的结束时间,即2012-01-01 23:59:59
     *
     * @return
     */
    public static Date getCurrentHourEndTime() {
        Date now = new Date();
        try {
            now = longSdf.parse(longHourSdf.format(now) + ":59:59");
        } catch (Exception e) {
            e.printStackTrace();
        }
        return now;
    }

    /**
     * 获得本月的开始时间,即2012-01-01 00:00:00
     *
     * @return
     */
    public static Date getCurrentMonthStartTime() {
        Calendar c = Calendar.getInstance();
        Date now = null;
        try {
            c.set(Calendar.DATE, 1);
            now = shortSdf.parse(shortSdf.format(c.getTime()));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return now;
    }

    /**
     * 当前月的结束时间,即2012-01-31 23:59:59
     *
     * @return
     */
    public static Date getCurrentMonthEndTime() {
        Calendar c = Calendar.getInstance();
        Date now = null;
        try {
            c.set(Calendar.DATE, 1);
            c.add(Calendar.MONTH, 1);
            c.add(Calendar.DATE, -1);
            now = longSdf.parse(shortSdf.format(c.getTime()) + " 23:59:59");
        } catch (Exception e) {
            e.printStackTrace();
        }
        return now;
    }


    /**
     * 当前年的开始时间,即2012-01-01 00:00:00
     *
     * @return
     */
    public static Date getCurrentYearStartTime() {
        Calendar c = Calendar.getInstance();
        Date now = null;
        try {
            c.set(Calendar.MONTH, 0);
            c.set(Calendar.DATE, 1);
            now = shortSdf.parse(shortSdf.format(c.getTime()));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return now;
    }

    /**
     * 当前年的结束时间,即2012-12-31 23:59:59
     *
     * @return
     */
    public static Date getCurrentYearEndTime() {
        Calendar c = Calendar.getInstance();
        Date now = null;
        try {
            c.set(Calendar.MONTH, 11);
            c.set(Calendar.DATE, 31);
            now = shortSdf.parse(shortSdf.format(c.getTime()));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return now;
    }

    /**
     * 当前季度的开始时间,即2012-01-1 00:00:00
     *
     * @return
     */
    public static Date getCurrentQuarterStartTime() {
        Calendar c = Calendar.getInstance();
        int currentMonth = c.get(Calendar.MONTH) + 1;
        Date now = null;
        try {
            if (currentMonth >= 1 && currentMonth <= 3)
                c.set(Calendar.MONTH, 0);
            else if (currentMonth >= 4 && currentMonth <= 6)
                c.set(Calendar.MONTH, 3);
            else if (currentMonth >= 7 && currentMonth <= 9)
                c.set(Calendar.MONTH, 4);
            else if (currentMonth >= 10 && currentMonth <= 12)
                c.set(Calendar.MONTH, 9);
            c.set(Calendar.DATE, 1);
            now = longSdf.parse(shortSdf.format(c.getTime()) + " 00:00:00");
        } catch (Exception e) {
            e.printStackTrace();
        }
        return now;
    }

    /**
     * 当前季度的结束时间,即2012-03-31 23:59:59
     *
     * @return
     */
    public static Date getCurrentQuarterEndTime() {
        Calendar c = Calendar.getInstance();
        int currentMonth = c.get(Calendar.MONTH) + 1;
        Date now = null;
        try {
            if (currentMonth >= 1 && currentMonth <= 3) {
                c.set(Calendar.MONTH, 2);
                c.set(Calendar.DATE, 31);
            } else if (currentMonth >= 4 && currentMonth <= 6) {
                c.set(Calendar.MONTH, 5);
                c.set(Calendar.DATE, 30);
            } else if (currentMonth >= 7 && currentMonth <= 9) {
                c.set(Calendar.MONTH, 8);
                c.set(Calendar.DATE, 30);
            } else if (currentMonth >= 10 && currentMonth <= 12) {
                c.set(Calendar.MONTH, 11);
                c.set(Calendar.DATE, 31);
            }
            now = longSdf.parse(shortSdf.format(c.getTime()) + " 23:59:59");
        } catch (Exception e) {
            e.printStackTrace();
        }

        return now;
    }

    public static void main(String args[]) {
        System.out.println("当前年开始时间:" + longSdf.format(getCurrentYearStartTime()));
        System.out.println("当前年结束时间:" + longSdf.format(getCurrentYearEndTime()));
        System.out.println("-------------------");
        System.out.println("当前季度开始时间:" + longSdf.format(getCurrentQuarterStartTime()));
        System.out.println("当前季度结束时间:" + longSdf.format(getCurrentQuarterEndTime()));
        System.out.println("-------------------");
        System.out.println("当前月开始时间:" + longSdf.format(getCurrentMonthStartTime()));
        System.out.println("当前月结束时间:" + longSdf.format(getCurrentMonthEndTime()));
        System.out.println("-------------------");
        System.out.println("当前周开始时间:" + longSdf.format(getCurrentWeekDayStartTime()));
        System.out.println("当前周结束时间:" + longSdf.format(getCurrentWeekDayEndTime()));
        System.out.println("-------------------");
        System.out.println("当前天开始时间:" + longSdf.format(getCurrentDayStartTime()));
        System.out.println("当前天结束时间:" + longSdf.format(getCurrentDayEndTime()));
        System.out.println("-------------------");
        System.out.println("当前时开始时间:" + longSdf.format(getCurrentHourStartTime()));
        System.out.println("当前时结束时间:" + longSdf.format(getCurrentHourEndTime()));

    }

}

分享到:
评论

相关推荐

    网站统计在线人数,当前年、月、日访问量JAVA代码

    6. **日期计算**:Java的java.time包提供了丰富的日期和时间API,如LocalDate、LocalDateTime等,可以方便地进行日期转换和比较,以确定当前年、月、日。 7. **优化性能**:为了提高性能,可以使用缓存技术,如...

    根据输入月份获取季度区间

    该代码片段展示了一个名为`DateUtil`的Java类,其中包含一个方法`getQuarterInterval`,用于根据输入的月份范围(起始月和结束月)计算出覆盖该时间段的季度区间。此功能对于财务报告、数据分析等领域非常有用,因为...

    非常完美Java实现年、月、日、周访问量统计

    总结来说,Java提供的强大日期和时间API使得实现年、月、日、周访问量统计变得简单。通过合理的数据结构和设计模式,我们可以构建出高效且易于维护的统计系统。在实际项目中,还需要考虑线程安全、性能优化以及与...

    C# 常用日期时间函数

    2. **取当前年、月、日、时、分、秒和毫秒** - `currentTime.Year`返回当前日期的年份。 - `currentTime.Month`返回当前日期的月份。 - `currentTime.Day`返回当前日期的日。 - `currentTime.Hour`返回当前时间...

    纯JAVA计算日期的农历节日、公历节日代码!

    - 公历节日通常是固定的日期,例如春节(1月1日),我们可以直接根据日期进行判断。使用`LocalDate`类可以轻松地比较和匹配日期。 4. **农历节日**: - 农历节日如端午节、中秋节等,日期不是固定的,需要根据...

    Java_Date_日期时间整理

    可以使用 `java.util.Date` 类的 `getYear()`、`getMonth()`、`getDate()` 方法来获取当前年、月、日。 ```java &lt;%@ page import="java.util.Date"%&gt; (); int thisYear = myDate.getYear() + 1900; //thisYear = ...

    .安卓版的C++输出当前年月日时分秒的时间数量程序代码.txt

    .安卓版的C++输出当前年月日时分秒的时间数量程序代码

    javajava版本的万年历,可以显示当前时间,如当前年、当前月、当前日、当前小时、当前分钟

    - 使用观察者模式(Observer Pattern)可以使模型和视图保持同步,当日期时间发生变化时自动更新界面。 6. **测试和调试**: - 使用JUnit等单元测试框架对日期时间的计算和格式化功能进行测试,确保正确性。 - ...

    java代码获取当前月第一天和最后一天的毫秒值(csdn)————程序.pdf

    在Java编程中,有时我们需要获取特定月份的第一天和最后一天的毫秒值,这在处理时间范围、数据统计或者日志记录等场景中非常常见。本文将详细解释如何使用Java的`Calendar`类来实现这一功能,以满足上述标题和描述的...

    Java输出系统当前的日期(年月日时分秒毫秒)

    代码如下: package test.remote.tools.combine; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; public class TestOutDate { public ...

    易语言取本周开始结束日期

    系统时间子程序会返回一个包含当前年、月、日、时、分、秒的时间结构体。我们可以提取出日、月、年来构建当前日期。 接着,我们需要确定当前日期是周几。这可以通过计算当前日期与周一的日期差来完成。易语言提供了...

    DateUtils.java

    "获取某年的第几周的结束日期","获取当前时间所在周的开始日期","当前时间所在周的结束日期","获得上周一的日期","获得本周一的日期","下周一的日期","今天日期","本月一日的日期","获得本月最后一日的日期

    js 获取本周、上周、本月、上月、本季度、上季度的开始结束日期

    开始日期是当前年和月的第一天,而结束日期是通过获取下个月的第一天,然后减去一天得到。 `getQuarterStartDate()`和`getQuarterEndDate()`分别获取本季度的开始和结束日期。开始日期是当前年份和本季度起始月份的...

    java获取当年的法定节假日和工作日等信息

    * 节假日信息配置表,用于存放法定节假日及周六日倒班信息。 字段包括:year,lawHolidays,extraworkdays * 1、创建ChineseWorkDay对象 * ChineseWorkDay cc = new ChineseWorkDay(new Date()); * 2、判断日期...

    java常用时间方法

    例如,代码中的`getNowTime`方法就使用了`SimpleDateFormat`来获取当前时间,并将其格式化为“年-月-日”的形式。 ```java public static String getNowTime(String pattern) { SimpleDateFormat sdf = new ...

    Calendar1.java

    对某个月来说,要打印8行7列,第1行是月份,第2行是星期,剩下的都是日期,如图。 总共打印3 * 8 = 24行4 * 7 = 28列。 于是通过循环嵌套加上条件判断即可实现打印。根据date数组的储存,值为0打印空格,非0打印其...

    C#中获取时间的年月日的方法

    根据提供的文件信息,我们可以总结出在C#编程语言中获取日期和时间的多种方法与细节。下面将详细解析这些知识点: ### C#中获取时间的年月日的方法 #### 方法一:利用`DateTime.Today`与`DateTime.Now` 1. **获取...

    网站统计在线人数,当前年、月、日

    网站统计在线人数,当前年、月、日

    c#获取当前年的天数

    在C#编程语言中,获取当前年的天数是一项常见的任务,尤其在处理日期和时间相关的逻辑时。这个程序示例提供了获取任何一年天数的方法,不仅限于当前年。我们可以通过利用C#中的DateTime和DateTime.IsLeapYear()方法...

    c#获取当前年的周数及当前月的天数示例代码

    获取当前年的周数 代码如下: ///  /// 获得今年有几周 ///  /// ”year”&gt; /// &lt;returns&gt;&lt;/returns&gt; public int GetWeekOfYear(int year) { DateTime the_Date = new DateTime(year,1,1);//本年的第一天 ...

Global site tag (gtag.js) - Google Analytics