每一個日期・時間細繩java.util.Date,,java.util.日曆轉換成
一切都在Java中日期、時間字串, 如果可能的話 java.util.日曆 ,, java.util.Date 這是一個轉換為類型的範例程式。
對於轉換,首先格式化為預設日期/時間字串,然後 java.util.日曆 轉換為類型。如果無法轉換,則會拋出 IllegalArgumentException
还有java.util.Date 使用Calendar類別的getTime()方法轉換為類型。
可轉換的日期格式如下。
範例程式
int yyyy = Integer.parseInt(strDate.substring(0,4));
int MM = Integer.parseInt(strDate.substring(5,7));
int dd = Integer.parseInt(strDate.substring(8,10));
int HH = cal.get(日曆.HOUR_OF_DAY);
int mm = cal.get(日曆.分鐘);
int ss = cal.get(日曆.SECOND);
int SSS = cal.get(日曆.MILLISECOND);
cal.clear();
cal.set(yyyy,MM-1,dd);
int len = strDate.length();
開關(長度){
案例10:
休息;
情況 16: // yyyy/MM/dd HH:mm
HH = Integer.parseInt(strDate.substring(11,13));
mm = Integer.parseInt(strDate.substring(14,16));
cal.set(日曆.HOUR_OF_DAY,HH);
cal.set(日曆.分鐘,毫米);
休息;
情況 19: //yyyy/MM/dd HH:mm:ss
HH = Integer.parseInt(strDate.substring(11,13));
mm = Integer.parseInt(strDate.substring(14,16));
ss = Integer.parseInt(strDate.substring(17,19));
cal.set(日曆.HOUR_OF_DAY,HH);
cal.set(日曆.分鐘,毫米);
cal.set(日曆.SECOND,ss);
休息;
案例 23: //yyyy/MM/dd HH:mm:ss.SSS
HH = Integer.parseInt(strDate.substring(11,13));
mm = Integer.parseInt(strDate.substring(14,16));
ss = Integer.parseInt(strDate.substring(17,19));
SSS = Integer.parseInt(strDate.substring(20,23));
cal.set(日曆.HOUR_OF_DAY,HH);
cal.set(日曆.分鐘,毫米);
cal.set(日曆.SECOND,ss);
cal.set(日曆.MILLISECOND,SSS);
休息;
預設 :
拋出新的 IllegalArgumentException(
“參數字串[“+ strDate +
“] 無法轉換為日期字串”);
}
返回校準;
}
/**
* 各種日期/時間字串的預設日期/時間格式
轉換成 *。
*
* ●預設日期格式如下。
* 僅適用於日期:yyyy/MM/dd
* 對於日期 + 時間:yyyy/MM/dd HH:mm:ss.SSS
*
* @param str 要轉換的字串
* @return 預設日期/時間格式
* @拋出IllegalArgumentException
* 如果日期字串無法轉換
*/
私有靜態字串格式(字串str){
if (str == null || str.trim().length() < 8) {
拋出新的 IllegalArgumentException(
“參數字串 [“+ str +
“] 無法轉換為日期字串”);
}
str = str.trim();
字串 yyyy = null; 字串 MM = null; 字串 dd = null;
字串 HH = null; 字串 mm = null;
字串 ss = null;字串 ss = null;
// 如果缺少“-”或“/”
if (str.indexOf(“/”)==-1 && str.indexOf(“-“)==-1) {
if (str.length() == 8) {
yyyy = str.substring(0,4);
MM = str.substring(4,6);
dd = str.substring(6,8);
返回yyyy+”/”+MM+”/”+dd;
}
yyyy = str.substring(0,4);
MM = str.substring(4,6);
dd = str.substring(6,8);
HH = str.substring(9,11);
mm = str.substring(12,14);
ss = str.substring(15,17);
返回 yyyy+”/”+MM+”/”+dd+” “+HH+”:”+mm+”:”+ss;
}
StringTokenizer token = new StringTokenizer(str,”_/-:.”);
StringBuffer 結果 = new StringBuffer();
for(int i = 0; token.hasMoreTokens(); i++) {
字串 temp = token.nextToken();
開關(一){
case 0:// 年份部分
yyyy = fillString(str, temp, “L”, “20”, 4);
結果.append(yyyy);
休息;
案例 1:// 月份部分
MM = fillString(str, temp, “L”, “0”, 2);
結果.append(“/”+MM);
休息;
案例 2:// 日間時段
dd = fillString(str, temp, “L”, “0”, 2);
結果.append(“/”+dd);
休息;
案例3://時間部分
HH = fillString(str, temp, “L”, “0”, 2);
結果.append(” “+HH);
休息;
案例 4:// 分鐘部分
mm = fillString(str, temp, “L”, “0”, 2);
結果.append(“:”+mm);
休息;
案例5://第二部分
ss = fillString(str, temp, “L”, “0”, 2);
結果.append(“:”+ss);
休息;
case 6:// 毫秒部分
SSS = fillString(str, temp, “R”, “0”, 3);
結果.append(“.”+SSS);
休息;
}
}
回傳結果.toString();
}
私有靜態字串 fillString(字串 strDate, 字串 str,
字串位置、字串addStr、
整數長度){
if (str.length() > len) {
拋出新的 IllegalArgumentException(
“參數字串[“+ strDate +
“] 無法轉換為日期字串”);
}
返回 fillString(str, 位置, len, addStr);
}
/**
* 將要新增的字串[addStr]加入到字串[str]中
* 在[位置]處插入,直到[長度]填滿。
*
* *即使 [str] 為 null 或空文字,也使用 [addStr]
* 傳回插入的結果,直到[len]填滿。
* @param str 目標字串
* @param 位置 在 ⇒ L 或 l 之前插入 在 ⇒ R 或 r 之後插入
* @param len 要補充的位數
* @param addStr 要插入的字串
* @return 轉換後的字串。
*/
私有靜態字串 fillString(字串 str, 字串位置,
國際長度,
字串 addStr) {
if (addStr == null || addStr.length() == 0) {
拋出新的 IllegalArgumentException
(“要插入的字串的值無效。addStr=”+addStr);
}
if (str == null) {
字串=“”;
}
StringBuffer 緩衝區 = new StringBuffer(str);
while (len > buffer.length()) {
if (position.equalsIgnoreCase(“l”)) {
int sum = buffer.length() + addStr.length();
如果(總和>長度){
addStr = addStr.子字串
(0,addStr.length() – (sum – len));
buffer.insert(0, addStr);
}別的{
buffer.insert(0, addStr);
}
} 別的 {
buffer.append(addStr);
}
}
if (buffer.length() == len) {
返回 buffer.toString();
}
返回 buffer.toString().substring(0, len);
}
執行結果
◆執行範例
// yyyy-MM-dd 模式
cal = toCalendar(“2007-01-01”);
日期 = cal.getTime();
System.out.println(“[2007-01-01] = '”+日期+”'”);
//yyyyMMdd 模式
cal = toCalendar(“20070101”);
日期 = cal.getTime();
System.out.println(“[20070101] = '”+日期+“'”);
// yy-MM-dd 模式
cal = toCalendar(“07-01-01”);
日期 = cal.getTime();
System.out.println(“[07-01-01] = '”+日期+”'”);
System.out.println(“\n————日期+時間——————————”);
// yyyy/MM/dd HH:mm:ss 的模式
cal = toCalendar(“2007/01/01 12:00:00”);
日期 = cal.getTime();
System.out.println(“[2007/01/01 12:00:00] = '”+日期+”'”);
// yyyyMMdd HH:mm:ss 的模式
cal = toCalendar(“20070101 12:00:00”);
日期 = cal.getTime();
System.out.println(“[20070101 12:00:00] = '”+日期+”'”);
// yyyy/MM/dd HH:mm 的模式
cal = toCalendar(“2007/01/01 12:00”);
日期 = cal.getTime();
System.out.println(“[2007/01/01 12:00] = '”+日期+”'”);
System.out.println(“\n——僅時間—————————”);
// HH:mm:ss 的模式。 *如果只使用時間,請在前面新增日期。
卡爾 = 日曆(
new SimpleDateFormat(“yyyy/MM/dd”).format(new Date()) +
” 12:00:00″);
日期 = cal.getTime();
System.out.println(“[12:00:00] = '”+日期+”'”);
}
◆輸出結果
----- 僅日期 --------------------------- [2007/01/01] = 'Mon Jan 01 00:00: 00 JST 2007' [2007-01-01] = 'Mon Jan 01 00:00:00 JST 2007' [20070101] = 'Mon Jan 01 00:00:00 JST 2007' [07-01-01] = '一Jan 01 00:00:00 JST 2007' ----- 日期+時間-------------------------- [2007/01/ 01 12:00:00] = '2007 年1 月1 日星期一12:00:00 JST' [20070101 12:00:00] = '2007 年1 月1 日星期一12:00:00 JST' [ 2007/01/01 12:00] = 'Mon Jan 01 12:00:00 JST 2007' ----- 僅時間--------------------- ------ [12: 00:00] = '2007 年日本標準時間 6 月 6 日星期三 12:00:00'
此範例程式適用於 Chat&Messenger。日曆/日程管理功能”實際使用過。