程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> DateTools時間插件,datetools插件

DateTools時間插件,datetools插件

編輯:JAVA綜合教程

DateTools時間插件,datetools插件


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; } }}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved