DateTools時間插件

来源:http://www.cnblogs.com/jiuchongxiao/archive/2016/07/01/5633467.html
-Advertisement-
Play Games

import java.text.DateFormat;import java.text.ParsePosition;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date;/** * * @ ...


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

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 需求: 光看標題大家肯定不知道是什麼東西,先上效果圖: 這不就是ListView的Group效果嗎?? 看上去是的。但是請聽完需求.1.Group中的集合需要支持增量載入ISupportIncrementalLoading 2.支持UI Virtualization oh,no。ListView 自 ...
  • 漸變透明 ...
  • ...
  • 通過設置BlurEffect的Radius屬性的可以設置模糊度 ...
  • el最常用的幾種使用場景: 從配置文件中讀取屬性 缺失值情況下,配置預設值 el內部字元串使用String的方法 三目運算符 正則表達式 註入系統屬性(system properties) 調用系統原有函數 直接註入文件進行操作 讀取另一個bean的函數的返回值 1、從配置文件中讀取屬性 appli ...
  • 一、客戶端腳本安全 (1)跨站腳本攻擊(XSS): XSS攻擊,通常指黑客通過“html註入” 篡改了網頁,插入了惡意的腳本,從而在用戶瀏覽網頁的時候,控制用戶瀏覽器的一種攻擊。 最常見的XSS攻擊就是通過讀取瀏覽器的Cookie對象,從而發起“cookie劫持”,當前用戶的登錄憑證存儲於伺服器的s ...
  • 題目:輸入一個整形數組,數組裡有正數也有負數。組中連續的一個或多個整數組成一個子數組,每個子數組都有一個和。求所有子數組的和的最大值。要求時間複雜度為O(n)。 思路:當我們加上一個正數時,和會增加;當我們加上一個負數時,和會減少。如果當前得到的和是個負數,那麼這個和在接下來的累加中應該拋棄並重新清 ...
  • 一、HTTP協議 HTTP協議是一個無狀態協議,伺服器無法判斷若幹個請求是否來自同一個瀏覽器,無法與瀏覽器進行會話。 二、HTTP會話控制:Cookie Cookie技術是使用在瀏覽器端的一種緩存技術, 在瀏覽器第一次向伺服器發出請求,在伺服器端會創建Cookie對象,並以鍵值對的形式在響應頭中返回 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...