/*
* 创建日期 2007-03-14
*
* 功能 取日期时间工具
*
*/
package com.util;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Calendar;
import java.util.GregorianCalendar;
/**
* 说明: 取日期时间工具
*
* @author 好学蜘蛛
* @author haoxueweb@163.com
* @version 1.0
* Company http://freehost04.websamba.com/dudu178
*/
public class DateUtil {
public DateUtil(){}
/**
* @see 取得当前日期(格式为:yyyy-MM-dd)
* @return String
*/
public String GetDate()
{
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String sDate = sdf.format(new Date());
return sDate;
}
/**
* @see 取得当前时间(格式为:yyy-MM-dd HH:mm:ss)
* @return String
*/
public static String GetDateTime()
{
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String sDate = sdf.format(new Date());
return sDate;
}
/**
* @see 按指定格式取得当前时间()
* @return String
*/
public String GetTimeFormat(String strFormat)
{
SimpleDateFormat sdf = new SimpleDateFormat(strFormat);
String sDate = sdf.format(new Date());
return sDate;
}
/**
* @see 取得指定时间的给定格式()
* @return String
* @throws ParseException
*/
public String SetDateFormat(String myDate,String strFormat) throws ParseException
{
SimpleDateFormat sdf = new SimpleDateFormat(strFormat);
String sDate = sdf.format(sdf.parse(myDate));
return sDate;
}
public String FormatDateTime(String strDateTime, String strFormat)
{
String sDateTime = strDateTime;
try {
Calendar Cal = parseDateTime(strDateTime);
SimpleDateFormat sdf = null;
sdf = new SimpleDateFormat(strFormat);
sDateTime = sdf.format(Cal.getTime());
} catch (Exception e) {
}
return sDateTime;
}
public static Calendar parseDateTime(String baseDate)
{
Calendar cal = null;
cal = new GregorianCalendar();
int yy = Integer.parseInt(baseDate.substring(0, 4));
int mm = Integer.parseInt(baseDate.substring(5, 7)) - 1;
int dd = Integer.parseInt(baseDate.substring(8, 10));
int hh = 0;
int mi = 0;
int ss = 0;
if(baseDate.length() > 12)
{
hh = Integer.parseInt(baseDate.substring(11, 13));
mi = Integer.parseInt(baseDate.substring(14, 16));
ss = Integer.parseInt(baseDate.substring(17, 19));
}
cal.set(yy, mm, dd, hh, mi, ss);
return cal;
}
public int getDay(String strDate)
{
Calendar cal = parseDateTime(strDate);
return cal.get(Calendar.DATE);
}
public int getMonth(String strDate)
{
Calendar cal = parseDateTime(strDate);
return cal.get(Calendar.MONTH) + 1;
}
public int getWeekDay(String strDate)
{
Calendar cal = parseDateTime(strDate);
return cal.get(Calendar.DAY_OF_WEEK);
}
public String getWeekDayName(String strDate)
{
String mName[] = {
"日", "一", "二", "三", "四", "五", "六"
};
int iWeek = getWeekDay(strDate);
iWeek = iWeek - 1;
return "星期" + mName[iWeek];
}
public int getYear(String strDate)
{
Calendar cal = parseDateTime(strDate);
return cal.get(Calendar.YEAR) + 1900;
}
public String DateAdd(String strDate, int iCount, int iType)
{
Calendar Cal = parseDateTime(strDate);
int pType = 0;
if(iType == 0)
{
pType = 1;
} else
if(iType == 1)
{
pType = 2;
} else
if(iType == 2)
{
pType = 5;
} else
if(iType == 3)
{
pType = 10;
} else
if(iType == 4)
{
pType = 12;
} else
if(iType == 5)
{
pType = 13;
}
Cal.add(pType, iCount);
SimpleDateFormat sdf = null;
if(iType <= 2)
sdf = new SimpleDateFormat("yyyy-MM-dd");
else
sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String sDate = sdf.format(Cal.getTime());
return sDate;
}
public String DateAdd(String strOption, int iDays, String strStartDate)
{
if(!strOption.equals("d"));
return strStartDate;
}
public int DateDiff(String strDateBegin, String strDateEnd, int iType)
{
Calendar calBegin = parseDateTime(strDateBegin);
Calendar calEnd = parseDateTime(strDateEnd);
long lBegin = calBegin.getTimeInMillis();
long lEnd = calEnd.getTimeInMillis();
int ss = (int)((lBegin - lEnd) / 1000L);
int min = ss / 60;
int hour = min / 60;
int day = hour / 24;
if(iType == 0)
return hour;
if(iType == 1)
return min;
if(iType == 2)
return day;
else
return -1;
}
/*****************************************
* @功能 判断某年是否为闰年
* @return boolean
* @throws ParseException
****************************************/
public boolean isLeapYear(int yearNum){
boolean isLeep = false;
/**判断是否为闰年,赋值给一标识符flag*/
if((yearNum % 4 == 0) && (yearNum % 100 != 0)){
isLeep = true;
} else if(yearNum % 400 ==0){
isLeep = true;
} else {
isLeep = false;
}
return isLeep;
}
/*****************************************
* @功能 计算当前日期某年的第几周
* @return interger
* @throws ParseException
****************************************/
public int getWeekNumOfYear(){
Calendar calendar = Calendar.getInstance();
int iWeekNum = calendar.get(Calendar.WEEK_OF_YEAR);
return iWeekNum;
}
/*****************************************
* @功能 计算指定日期某年的第几周
* @return interger
* @throws ParseException
****************************************/
public int getWeekNumOfYearDay(String strDate ) throws ParseException{
Calendar calendar = Calendar.getInstance();
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date curDate = format.parse(strDate);
calendar.setTime(curDate);
int iWeekNum = calendar.get(Calendar.WEEK_OF_YEAR);
return iWeekNum;
}
/*****************************************
* @功能 计算某年某周的开始日期
* @return interger
* @throws ParseException
****************************************/
public String getYearWeekFirstDay(int yearNum,int weekNum) throws ParseException {
Calendar cal = Calendar.getInstance();
cal.set(Calendar.YEAR, yearNum);
cal.set(Calendar.WEEK_OF_YEAR, weekNum);
cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
//分别取得当前日期的年、月、日
String tempYear = Integer.toString(yearNum);
String tempMonth = Integer.toString(cal.get(Calendar.MONTH) + 1);
String tempDay = Integer.toString(cal.get(Calendar.DATE));
String tempDate = tempYear + "-" +tempMonth + "-" + tempDay;
return SetDateFormat(tempDate,"yyyy-MM-dd");
}
/*****************************************
* @功能 计算某年某周的结束日期
* @return interger
* @throws ParseException
****************************************/
public String getYearWeekEndDay(int yearNum,int weekNum) throws ParseException {
Calendar cal = Calendar.getInstance();
cal.set(Calendar.YEAR, yearNum);
cal.set(Calendar.WEEK_OF_YEAR, weekNum + 1);
cal.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY);
//分别取得当前日期的年、月、日
String tempYear = Integer.toString(yearNum);
String tempMonth = Integer.toString(cal.get(Calendar.MONTH) + 1);
String tempDay = Integer.toString(cal.get(Calendar.DATE));
String tempDate = tempYear + "-" +tempMonth + "-" + tempDay;
return SetDateFormat(tempDate,"yyyy-MM-dd");
}
/*****************************************
* @功能 计算某年某月的开始日期
* @return interger
* @throws ParseException
****************************************/
public String getYearMonthFirstDay(int yearNum,int monthNum) throws ParseException {
//分别取得当前日期的年、月、日
String tempYear = Integer.toString(yearNum);
String tempMonth = Integer.toString(monthNum);
String tempDay = "1";
String tempDate = tempYear + "-" +tempMonth + "-" + tempDay;
return SetDateFormat(tempDate,"yyyy-MM-dd");
}
/*****************************************
* @功能 计算某年某月的结束日期
* @return interger
* @throws ParseException
****************************************/
public String getYearMonthEndDay(int yearNum,int monthNum) throws ParseException {
//分别取得当前日期的年、月、日
String tempYear = Integer.toString(yearNum);
String tempMonth = Integer.toString(monthNum);
String tempDay = "31";
if (tempMonth.equals("1") || tempMonth.equals("3") || tempMonth.equals("5") || tempMonth.equals("7") ||tempMonth.equals("8") || tempMonth.equals("10") ||tempMonth.equals("12")) {
tempDay = "31";
}
if (tempMonth.equals("4") || tempMonth.equals("6") || tempMonth.equals("9")||tempMonth.equals("11")) {
tempDay = "30";
}
if (tempMonth.equals("2")) {
if (isLeapYear(yearNum)) {
tempDay = "29";
} else {
tempDay = "28";
}
}
//System.out.println("tempDay:" + tempDay);
String tempDate = tempYear + "-" +tempMonth + "-" + tempDay;
return SetDateFormat(tempDate,"yyyy-MM-dd");
}
}
分享到:
相关推荐
这个主题涉及到了编程逻辑和日期处理,其中的核心在于如何根据特定的规则来确定一年中的第一周,并以此为基础计算出任何给定日期所在的周次。在本案例中,我们关注的是一个动态设置判断条件和每周第一天的算法。 ...
根据提供的文件内容,可以看出这是一份关于Java时间函数的文档,其中包含多个与日期处理相关的函数。这些函数的实现涉及了Java语言中java.util和java.text包中的类,特别是Calendar类和Date类。文档内容提到了日期的...
本文将深入探讨《Java时间函数大全》中的几个关键方法,这些方法覆盖了从获取一个月的最后一天到判断两个日期是否处于同一周,再到获取当前时间所在的周序号等实用功能。 #### 获取一个月的最后一天:`...
在Java编程中,`Calendar`类是用于处理日期和时间的核心类之一,它与`Date`和`DateFormat`一起构成了处理日期和时间的基础框架。`Calendar`类是一个抽象类,提供了一个灵活的机制来表示和操作日期和时间,包括计算两...
这个实训项目涉及了Java编程基础、数据库连接、GUI设计、对象和类的概念、权限控制、数据处理等多个方面的知识。通过这个项目,学生不仅能够掌握Java语言的使用,还能了解到软件开发的完整流程,包括需求分析、设计...
根据提供的文档信息,我们可以推断出这份文档主要围绕着一个基于Java语言的考勤管理系统进行设计与实现。接下来,我们将详细解析文档中的各个部分,并从中提取出相关的知识点。 ### 一、程序设计流程 #### 1. 用户...
【WeeklyScrollableCalendar】是一个基于Java开发的日历组件,它主要功能是提供一个可滚动的视图,以展示一周内的日期和天数。这个组件特别适用于那些需要在应用中集成日历视图,并且需要用户能够方便地查看和操作...
在这个日记应用中,九宫格可能表示九个不同的日期或者周次,用户可以通过点击每个格子进入相应的日记页面。 5. **MySQL数据库**:作为开源的RDBMS,MySQL广泛应用于Web应用程序,因为它具有高性能、可扩展性和易于...
基于这些文件名,我们可以推测这些试题涵盖了从2009年9月到2010年初的时间段,意味着这是一个持续的学习过程,可能涉及到多个学期的课程内容。具体的知识点可能包括但不限于: 1. **编程语言基础**:如C/C++、Java...
- 课表参数设置模块:此模块允许用户设定与课程表相关的各种参数,例如学期起始日期、每天课程节数、上课时间以及每节课的闹铃提醒时机。 - 普通提醒管理模块:该模块用于管理课程表之外的提醒,包括增加、删除、...
5. **时间处理**:为了正确地显示和管理课程时间,源码中会涉及到Java或Kotlin的时间和日期处理,如`java.util.Calendar`或`java.time`包中的类。 6. **通知与提醒**:为了提醒用户即将开始的课程,源码可能包含了...
在Android开发中,创建一个课程表布局是一项常见的任务,它涉及到UI设计、事件处理以及对Android布局机制的理解。本课程表布局旨在提供一种用户友好的界面,用于展示和交互,如点击事件,来帮助学生或教师管理他们的...
此外,它可能还具备按照周次或日期查看课程的功能,方便学生规划学习时间。 2. **记事本功能**:记事本模块是一个简单的文本编辑工具,学生可以用来记录课堂笔记、待办事项或者临时的想法。它可以支持新建、编辑、...