import java.text.DateFormat;
import java.text.ParsePosition;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date; /**
*
* @author ljb
* @version 1.0 2015-07-10
*/
public class DateTools {
/**
* 国际标准
* 一周是从 周日开始计算
*/
public static int WEEK_OF_ISO=0;
/**
* 中国标准
* 一周是重周一开始计算
*/
public static int WEEK_OF_GBK=1;
private int local_GMP=DateTools.WEEK_OF_GBK;
/**
* 构造函数默认的每周是从 周一到周日
*/
public DateTools(){ }
/**
* 构造函数
* @param GMP 标准类型 WEEK_OF_GBK中国标准 WEEK_OF_ISO国际标准
*/
public DateTools(int GMP){
this.local_GMP=GMP;
}
/**
* 获得当前时间并且以String类型返回。
* @return
*
* @return 返回的时间格式yyyyMMddHHmmss。
*/
public String getDate() {
return getDate("yyyyMMddHHmmss");
} /**
* 获得当前时间。时间格式根据fmt进行格式化
*
* @param fmt
* 日期格式
* @return 返回的时间格式根据fmt格式生成
*/
public String getDate(String fmt) {
Date myDate = new Date(System.currentTimeMillis());
SimpleDateFormat sDateformat = new SimpleDateFormat(fmt);
return sDateformat.format(myDate).toString();
} private Calendar getCal(String strdate, String fmt) {
Calendar cal = null;
try {
if ((strdate != null) && (fmt != null)) { SimpleDateFormat nowDate = new SimpleDateFormat(fmt);
Date d = nowDate.parse(strdate, new ParsePosition(0));
if (d != null) {
cal = Calendar.getInstance();
cal.clear();
cal.setTime(d);
}
}
} catch (Exception e) {
e.printStackTrace();
return null;
}
return cal;
} /**
* 计算 当前日期是本年的第几周
*
* @param strdate
* 计算日期
* @param fmt
* 日期格式
* @return strdate说在年份中有几周,如果strdate的格式为yyyy则默认为当年的1月1日
*/
public int getWeekOfYear(String strdate, String fmt) {
int ret = -1;
try {
if ((strdate != null) && (fmt != null)) { Calendar cal = getCal(strdate, fmt);
if (cal != null) { ret = cal.get(Calendar.WEEK_OF_YEAR);
if(this.local_GMP==DateTools.WEEK_OF_GBK&&cal.get(Calendar.DAY_OF_WEEK)==Calendar.SUNDAY){
ret-=1;
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return ret;
} /**
* 计算给定日期所在周的全部日期
*
* @param strdate
* 指定日期
* @param oldfmt
* 自定日期格式
* @param newfmt
* 输出格式
* @return 结果数组形式输出所在周的日期。指定日期的格式为yyyy或yyyyMM将计算出当年第一周或当月第一周的日期
*/
public String[] getWeekDay(String strdate, String oldfmt, String newfmt) {
String[] weekday = new String[7];
try {
if ((strdate != null) && (oldfmt != null) && (newfmt != null)) {
Calendar cal = getCal(strdate, oldfmt);
if (cal != null) {
int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK);
dayOfWeek = -dayOfWeek + 1+this.local_GMP;
if (dayOfWeek > 0) {
dayOfWeek = -6;
}
cal.add(Calendar.DATE, dayOfWeek);
SimpleDateFormat sdf = new SimpleDateFormat(newfmt);
weekday[0] = sdf.format(cal.getTime());
for (int i = 1; i < 7; i++) {
cal.add(5, 1);
weekday[i] = sdf.format(cal.getTime());
}
}
}
} catch (IndexOutOfBoundsException iobe) {
iobe.printStackTrace();
}
return weekday;
} /**
* 计算给定周内的全部日期
*
* @param year
* 年
* @param week
* 给定第几周 * @param newfmt * 返回值格式 * @return 结果数组形式输出所在周的日期。 */ public String[] getWeekDate(String year, int week, String newfmt) { String[] jweekday = new String[7]; try { if ((year != null) && (year.length() == 4) && (week > 0) && (newfmt != null)) { Calendar cal = getCal(year + "0101", "yyyyMMdd"); if (cal != null) { week--; cal.add(5, week * 7 - cal.get(7) + 2); SimpleDateFormat sdf = new SimpleDateFormat(newfmt); jweekday[0] = sdf.format(cal.getTime()); for (int i = 1; i < 7; i++) { cal.add(5, 1); jweekday[i] = sdf.format(cal.getTime()); } } } } catch (IndexOutOfBoundsException iobe) { iobe.printStackTrace(); } return jweekday; } /** * 计算指定日期是星期几 * * @param strdate * 指定日期 * @param oldfmt * 指定日期格式 * @param fmt * 输出格式 * @return 返回结果为fmt+结果。 */ public String getDayOfWeek(String strdate, String oldfmt, String fmt) { String sWeek = null; try { if ((strdate != null) && (oldfmt != null) && (fmt != null)) { Calendar cal = getCal(strdate, oldfmt); if (cal != null) { int iWeek = cal.get(7); sWeek = fmt + (iWeek - 1 == 0 ? 7 : iWeek - 1); } } } catch (Exception e) { e.printStackTrace(); } return sWeek; } /** * 计算指定年共有多少周 * * @param year * 指定年 格式yyyy * @return 返回周数 */ public int getWeekNum(String year) { int weeknum = -1; try { if (year != null) { Calendar cal = getCal(year + "1231", "yyyyMMdd"); if (cal != null) { if (cal.get(3) == 1) cal.add(5, -7); weeknum = cal.get(3); } } } catch (Exception e) { e.printStackTrace(); } return weeknum; } /** * 计算两个给定的时间之差 * * @param startdate * 开始日期 * @param enddate * 结束日期 * @param fmt * 日期格式 * @param refmt * 返回值格式 ms毫秒 s秒 m分 h小时 d天 * @return 返回值 */ public String cntTimeDifference(String startdate, String enddate, String fmt, String refmt) { String ret = null; try { if ((startdate != null) && (enddate != null) && (fmt != null) && (refmt != null)) { Date scal = getCal(startdate, fmt).getTime(); Date ecal = getCal(enddate, fmt).getTime(); if ((scal == null) || (ecal == null)) { return null; } else { long diffMillis = ecal.getTime() - scal.getTime(); long diffSecs = diffMillis / 1000L; long diffMins = diffMillis / 60000L; long diffHours = diffMillis / 3600000L; long diffDays = diffMillis / 86400000L; if (refmt.equals("ms")) ret = Long.toString(diffMillis); else if (refmt.equals("s")) ret = Long.toString(diffSecs); else if (refmt.equals("m")) ret = Long.toString(diffMins); else if (refmt.equals("h")) ret = Long.toString(diffHours); else if (refmt.equals("d")) ret = Long.toString(diffDays); else ret = Long.toString(diffHours); } } } catch (Exception e) { e.printStackTrace(); } return ret; } /** * 计算指定日期经过多少分钟后的日期 * * @param deftime * 自定日期 * @param oldfmt * 日期格式 * @param timediff * 分钟为单位 * @param newfmt * 返回值的格式 * @return 返回日期,timediff >0向前计算,timediff<0向后计算 */ public String getBeforeTime(String deftime, String oldfmt, int timediff, String newfmt) { String rq = null; try { if ((deftime != null) && (!deftime.equals(""))) { Calendar cal = getCal(deftime, oldfmt); if (cal != null) { cal.add(Calendar.MINUTE, -timediff); SimpleDateFormat sdf = new SimpleDateFormat(newfmt); rq = sdf.format(cal.getTime()); } } } catch (Exception e) { e.printStackTrace(); } return rq; } /** * 计算指定日期经过多少小时后的日期 * * @param deftime * 自定日期 * @param oldfmt * 日期格式 * @param timediff * 小时为单位 * @param newfmt * 返回值的格式 * @return 返回日期,timediff >0向前计算,timediff<0向后计算 */ public String getBeforeTimeByH(String deftime, String oldfmt, int timediff, String newfmt) { String rq = null; try { if ((deftime != null) && (!deftime.equals(""))) { Calendar cal = getCal(deftime, oldfmt); if (cal != null) { cal.add(12, -timediff * 60); SimpleDateFormat sdf = new SimpleDateFormat(newfmt); rq = sdf.format(cal.getTime()); } } } catch (Exception e) { e.printStackTrace(); } return rq; } /** * 计算指定日期经过多少月后的日期 * * @param deftime * 自定日期 * @param oldfmt * 日期格式 * @param timediff * 月为单位 * @param newfmt * 返回值的格式 * @return 返回日期,timediff >0向前计算,timediff<0向后计算 */ public String getBeforeTimeByM(String deftime, String oldfmt, int timediff, String newfmt) { String rq = null; try { if ((deftime != null) && (!deftime.equals(""))) { Calendar cal = getCal(deftime, oldfmt); if (cal != null) { cal.add(2, -timediff); SimpleDateFormat sdf = new SimpleDateFormat(newfmt); rq = sdf.format(cal.getTime()); } } } catch (Exception e) { e.printStackTrace(); } return rq; } /** * 日期格式化 * * @param mydate * 日期 * @param oldfmt * 旧格式 * @param newfmt * 新格式 * @return 返回值的格式根据newfmt根式返回 */ public String fmtDate(String mydate, String oldfmt, String newfmt) { String restr = null; try { if ((mydate != null) && (oldfmt != null) && (newfmt != null)) { SimpleDateFormat newDate = new SimpleDateFormat(newfmt); Calendar cal = getCal(mydate, oldfmt); if (cal != null) { restr = newDate.format(cal.getTime()); } } } catch (Exception e) { e.printStackTrace(); } return restr; } /** * 将文字行的date格式成Date类型 * @param mydate * @param fmt * @return */ public Date fmtDate(String myDate,String fmt){ Date newDate=null; if((myDate != null) && (fmt != null)){ Calendar cal = getCal(myDate, fmt); newDate=cal.getTime(); } return newDate; } public String fmtDate(Date myDate,String fmt){ String newDate=""; SimpleDateFormat sDateformat = new SimpleDateFormat(fmt); newDate= sDateformat.format(myDate).toString(); return newDate; } public String fmtDate(Long myDate,String fmt){ Calendar calendar = Calendar.getInstance(); calendar.setTimeInMillis(myDate); DateFormat formatter = new SimpleDateFormat(fmt); return formatter.format(calendar.getTime()); } /*public static void main(String[] args){ DateTools dt = new DateTools(); System.out.print(dt.fmtDate(1462878420000l,"yyyy-MM-dd HH:mm:ss")); }*/ /** * 计算某年某月有多少天 * @param year * @return */ public int getMonthDays(int year,int month){ if(month>12||month<1){ throw new RuntimeException("month is error "+month); } String bigmonth="1,3,5,7,8,10,12"; String smallmonth="4,6,9,11"; if(bigmonth.indexOf(month+"")>-1){ return 31; } if(smallmonth.indexOf(month+"")>-1){ return 30; } if(year%400==0||(year%4==0&&year%100!=0)){ return 29; }else{ return 28; } }}

DateTools时间插件的更多相关文章

  1. angularjs封装bootstrap官网的时间插件datetimepicker

    背景:angular与jquery类库的协作 第三方类库中,不得不提的是大名鼎鼎的jquery,现在基本上已经是国内web开发的必修工具了.它灵活的dom操作,让很多web开发人员欲罢不能.再加上已经 ...

  2. bootstrap时间插件 火狐不显示 完美解决方法

    原文链接:http://www.phpbiji.cn/article/index/id/141/cid/4.html bootstrap时间插件火狐 bootstrap-datetimepicker火 ...

  3. 原生js日期时间插件鼠标点击文本框弹出日期时间表格选择日期时间

    原文出处 (这是我从互联网上搜来的,感觉能满足各方面的需求.个人感觉挺不错的,所以后期修改了一下向大家推荐!) 效果图: html代码: <!DOCTYPE html PUBLIC " ...

  4. bootstrap-datetimepicker bootstrap-datepicker bootstrap-timepicker 时间插件

    <!DOCTYPE html><head> <title>时间插件测试</title><style type="text/css&quo ...

  5. 【Bootstrap】bootstrap-datetimepicker日期时间插件

    [bootstrap-datetimepicker] datetimepicker是一个比较方便的日期时间插件.有了这个之后,我们可以在类似于表单的地方提供一个友好的日期(时间)输入功能.官方文档:[ ...

  6. 项目中遇到angular时间插件datetinepicker汉化问题

    问题描述: 测试需要中文的时间插件: 参考资料: angularjs封装bootstrap官网的时间插件datetimepicker https://www.cnblogs.com/cynthia-w ...

  7. 时间插件--daterangepicker使用和配置详解

    1.序言: daterangepicker是Bootstrap的一个时间组件,使用很方便 用于选择日期范围的JavaScript组件. 设计用于Bootstrap CSS框架. 它最初是为了改善报表而 ...

  8. bootstrap-datetimepicker时间插件

    bootstrap-datetimepicker时间插件 依赖的jar包 bootstrap的js和css jquery.js datetimepicker的js文件: bootstrap-datet ...

  9. 1、用datetimepicker插件实现限定时间范围的选择 2、时间插件实现默认当天的时间和只能选择小于今天的日期

    一.用datetimepicker插件实现限定时间范围的选择 1.下面是要实现的效果图,让开始时间只能从  2018-7-1  到 2018-7-7 选择. 2.html的结构 <div cla ...

随机推荐

  1. 10 Common Problems Causing Group Policy To Not Apply

    10 Common Problems Causing Group Policy To Not Apply Group Policy is a solid tool and is very stable ...

  2. sublime3中文乱码解决包ConvertToUTF8.zip

    把ConvertToUTF8.zip解压放到C:\Program Files\Sublime Text 3\Data\Packages中,重启sublime 3,按ctrl+shift+c即可解决中文 ...

  3. SQL Server 2012 配置数据库邮件

    发送和接受邮箱不能用QQ邮箱,可以用163网易邮箱,同时要求要发送邮件的计算机能上外网 查看163网易邮箱的发送和接收服务器的方法如下 在数据库的管理中,右击数据库邮件,选择配置数据库邮件 出现对话框 ...

  4. IOS中图片拉伸技巧与方法总结(转载)

    以下内容转载自:http://my.oschina.net/u/2340880/blog/403996 IOS中图片拉伸技巧与方法总结 一.了解几个图像拉伸的函数和方法 1.直接拉伸法 简单暴力,却是 ...

  5. php_sapi_name详解

    php_sapi_name : — 返回 web 服务器和 PHP 之间的接口类型. 返回描述 PHP 所使用的接口类型(the Server API, SAPI)的小写字符串. 例如,CLI 的 P ...

  6. SSH登陆 Write failed: Broken pipe解决办法

    新装的一台linux 6.4主机在所有参数调优以后,运行起来要跑的程序后.再通过su - www时,提示如下: su: cannot set user id: Resource temporarily ...

  7. 整合Apache+PHP教程

    首先修改Apache的配置文件,让Apache支持解析PHP文件,Apache配置文件在Apache安装目录的conf目录下的httpd.conf,打开此文件, 找到#LoadModule,在这个下面 ...

  8. Clustering with the ArcGIS API for Flex

    Clustering is an excellent technique for visualizing lotss of point data. We've all seen application ...

  9. AngularJS图片上传功能的实现

    一.前言 前一段时间做项目时,遇到一个问题就是AngularJS实现图片预览和上传的功能,当时查阅文档(都是英文文档)折腾了很久才弄出来,现将整个流程整理出来,有需要的朋友可以参考一下,如果您有更好的 ...

  10. 通过案例对 spark streaming 透彻理解三板斧之三:spark streaming运行机制与架构

    本期内容: 1. Spark Streaming Job架构与运行机制 2. Spark Streaming 容错架构与运行机制 事实上时间是不存在的,是由人的感官系统感觉时间的存在而已,是一种虚幻的 ...