DateTimeUtil.java 17.6 KB
Newer Older
Lee Jaebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586
package jp.agentec.adf.util;

import java.sql.Timestamp;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;

import jp.agentec.abook.abv.bl.common.log.Logger;

/**
 * 日付・時間関連の機能を提供します。
 * @author Taejin Hong
 * @version 1.0.0
 *
 */
public class DateTimeUtil {
	public enum DateUnit {
		Millisecond,
		Second,
		Minute,
		Hour,
		Day,
		Month,
		Year
	}
	
	/**
	 * 現在日時を返却します
	 * @return 現在日時の{@link Timestamp}
	 * @since 1.0.0
	 */
	public static Timestamp getCurrentTimestamp() {
		return new Timestamp(System.currentTimeMillis());
	}
	
	/**
	 * 現在時刻を返却します。
	 * @return 現在日時の{@link Date}
	 * @since 1.0.0
	 */
	public static Date getCurrentDate() {
		return new Date(getCurrentTimestamp().getTime());		
	}
	
	/**
	 * 現在時刻(UTC)を返却します。
	 * @return 現在日時の{@link String}
	 */
	public static Date getCurrentUTCDate() {
		SimpleDateFormat df = new SimpleDateFormat(DateTimeFormat.yyyyMMddHHmmssSSS_TZ);
		df.setTimeZone(TimeZone.getTimeZone("UTC"));
		String gmtTime = df.format(getCurrentDate());
		Date utcDate = null;
		try {
			utcDate = df.parse(gmtTime);
		} catch (ParseException e) {
		}
		return utcDate;
	}
	
	/**
	 * UTC時刻を返却します。
	 * @param date {@link Date}
	 * @return UTC日時{@link String}
	 */
	public static String getUTCDate(Date date) {
		SimpleDateFormat df = new SimpleDateFormat(DateTimeFormat.yyyyMMddHHmmssSSS_TZ);
		df.setTimeZone(TimeZone.getTimeZone("UTC"));
		String gmtTime = df.format(date);
		return gmtTime;
	}
	
	/**
	 * 現在時刻を返却します。
	 * @return 現在日時の{@link java.sql.Date}
	 * @since 1.0.0
	 */
	public static java.sql.Date getCurrentSqlDate() {
		return new java.sql.Date(getCurrentTimestamp().getTime());
	}
	
	/**
	 * 文字列を {@link Timestamp} 型に変換します。変換時例外が発生した場合はnullを返却します。<br>
	 * Example : {@code DateTimeUtil.gettimestamp("2011-12-02 17:08:16", DateTimeFormat.yyyyMMddHHmmss_dash);}
	 * @param time 時間を示す文字列
	 * @param format タイムスタンプのフォーマット(ハイフン又はスラッシュ区切りであること)
	 * @return 変換した {@link Timestamp} のインスタンス。
	 * @since 1.0.0
	 */
	public static Timestamp toTimestamp(String time, String format) {
		Timestamp timestamp = null;
		
		if (!StringUtil.isNullOrWhiteSpace(time) && !StringUtil.isNullOrWhiteSpace(format)) {
			time = time.replaceAll(StringUtil.Slash, StringUtil.Hyphen);
			
			try {
				timestamp = new Timestamp(new SimpleDateFormat(format).parse(time).getTime());
			} catch (Exception e) {}
		}
		
		return timestamp;
	}
	
	/**
	 * 指定した date を指定した format のDateに変換します。
	 * @param date 変換する {@link Date} です。
	 * @param format タイムスタンプのフォーマット
	 * @return 変換したDate
	 */
	public static Date formatDate(java.util.Date date, String format) {
		Date newDate = null;
		if (date != null && !StringUtil.isNullOrWhiteSpace(format)) {
			SimpleDateFormat sdf = new SimpleDateFormat(format);
			String s = sdf.format(date);
			try {
				newDate = sdf.parse(s);
			} catch (ParseException e) {
			}
		}
		return newDate;
	}
	
	/**
	 * 文字列を {@link Date} 型に変換します。変換時例外が発生した場合はnullを返却します。<br>
	 * Example : {@code DateTimeUtil.gettimestamp("2011-12-02 17:08:16", DateTimeFormat.yyyyMMddHHmmss_dash);}
	 * @param time 時間を示す文字列
	 * @param format タイムスタンプのフォーマット(ハイフン又はスラッシュ区切りであること)
	 * @return 変換した{@link Date}のインスタンス。
	 * @since 1.0.0
	 */
	public static Date toDate(String time, String format) {
		Date dt = null;
		
		if (!StringUtil.isNullOrWhiteSpace(time) && !StringUtil.isNullOrWhiteSpace(time)) {
			
			try {
				dt = new Date(new SimpleDateFormat(format).parse(time).getTime());
			} catch (Exception e) {
				Logger.e("DateTimeUtil", "[toDate]:" + time + ", format=" + format, e);
			}
		}
		
		return dt;
	}
	
	/**
	 * 文字列を {@link Date} 型に変換します。変換時例外が発生した場合はnullを返却します。<br>
	 * 
	 * @param time
	 * @param timeZone タイムゾーン(引数のtimeのタイムゾーン)
	 * @param format
	 * @return
	 */
	public static Date toDate(String time, String timeZone, String format) {
		Date dt = null;
		
		if (!StringUtil.isNullOrWhiteSpace(time) && !StringUtil.isNullOrWhiteSpace(time)) {
			time = time.replaceAll(StringUtil.Slash, StringUtil.Hyphen);
			
			try {
				SimpleDateFormat sdf = new SimpleDateFormat(format);
				sdf.setTimeZone(TimeZone.getTimeZone(timeZone));
				dt = new Date(sdf.parse(time).getTime());
			} catch (Exception e) {}
		}
		
		return dt;
	}
	
	/**
	 * 文字列を {@link java.sql.Date} 型に変換します。変換時例外が発生した場合はnullを返却します。<br>
	 * Example : {@code DateTimeUtil.gettimestamp("2011-12-02 17:08:16", DateTimeFormat.yyyyMMddHHmmss_dash);}
	 * @param time 時間を示す文字列
	 * @param format タイムスタンプのフォーマット(ハイフン又はスラッシュ区切りであること)
	 * @return 変換した{@link java.sql.Date}のインスタンス。
	 * @since 1.0.0
	 */
	public static java.sql.Date toSqlDate(String time, String format) {
		java.sql.Date dt = null;
		
		if (!StringUtil.isNullOrWhiteSpace(time) && !StringUtil.isNullOrWhiteSpace(time)) {
			time = time.replaceAll(StringUtil.Slash, StringUtil.Hyphen);
			
			try {
				dt = new java.sql.Date(new SimpleDateFormat(format).parse(time).getTime());
			} catch (Exception e) {}
		}

		return dt;
	}
	
	/**
	 * 指定した date を指定した format の文字列に変換します。
	 * @param date 変換する {@link Date} です。
	 * @param format 変換する文字列のフォーマットです。 {@link DateTimeFormat} に色々なフォーマットを予め定義しています。
	 * @return 変換した文字列を返します。
	 * @since 1.0.0
	 */
	public static String toString(java.util.Date date, String format) {
		String s = null;
		
		if (date != null && !StringUtil.isNullOrWhiteSpace(format)) {
			s = new SimpleDateFormat(format).format(date);
		}
		
		return s;
	}
	
	/**
	 * 指定した date を指定した format の文字列に変換します。
	 * @param date 変換する {@link Date} です。
	 * @param format 変換する文字列のフォーマットです。 {@link DateTimeFormat} に色々なフォーマットを予め定義しています。
	 * @param timeZone 変換結果のタイムゾーンです。
	 * @return 変換した文字列を返します。
	 * @since 1.0.0
	 */
	public static String toStringInTimeZone(java.util.Date date, String format, String timeZone) {
		String s = null;
		
		if (date != null && !StringUtil.isNullOrWhiteSpace(format)) {
			SimpleDateFormat df = new SimpleDateFormat(format);
			df.setTimeZone(TimeZone.getTimeZone(timeZone));
			s = df.format(date);
		}
		
		return s;
	}

    public static String toString_yyyyMMddHHmmss_none(java.util.Date date) {
        return toString(date, DateTimeFormat.yyyyMMddHHmmss_none);
    }

    public static String toString_yyyyMMddHHmmss_slash(java.util.Date date) {
        return toString(date, DateTimeFormat.yyyyMMddHHmmss_slash);
    }

    public static String toStringForCmsGMT(java.util.Date date) {
        return toStringInTimeZone(date, DateTimeFormat.yyyyMMddHHmmss_hyphen, "GMT") + ",GMT";
    }
	
	/**
	 * 指定した date を指定した format の文字列に変換します。
	 * @param date 変換する {@link java.sql.Date} です。
	 * @param format 変換する文字列のフォーマットです。 {@link DateTimeFormat} に色々なフォーマットを予め定義しています。
	 * @return 変換した文字列を返します。
	 * @since 1.0.0
	 */
	public static String toString(java.sql.Date date, String format) {
		String s = null;
		
		if (date != null && !StringUtil.isNullOrWhiteSpace(format)) {
			s = new SimpleDateFormat(format).format(date);
		}
		
		return s;
	}

	/**
	 * 指定した date を指定した format の文字列に変換します。
	 * @param date 変換する {@link java.sql.Date} です。
	 * @param format 変換する文字列のフォーマットです。 {@link DateTimeFormat} に色々なフォーマットを予め定義しています。
	 * @param timeZone 変換結果のタイムゾーンです。
	 * @return 変換した文字列を返します。
	 * @since 1.0.0
	 */
	public static String toStringInTimeZone(java.sql.Date date, String format, String timeZone) {
		String s = null;
		
		if (date != null && !StringUtil.isNullOrWhiteSpace(format)) {
			SimpleDateFormat df = new SimpleDateFormat(format);
			df.setTimeZone(TimeZone.getTimeZone(timeZone));
			s = df.format(date);
		}
		
		return s;
	}
	
	/**
	 * 二つの時間の差を計算します。
	 * @param beforeDate 比較する日付です。
	 * @param afterDate 比較する日付です。
	 * @return 時間の差をミリ秒で返します。
	 * @since 1.0.0
	 */
	public static int TimeLagToInt(Date beforeDate, Date afterDate) {
		long duration;
		long before = 0;
		long after = 0;
		if (beforeDate != null) {	        
	        Calendar beforeCal = Calendar.getInstance();
	        beforeCal.setTime(beforeDate);
	        before = beforeCal.getTimeInMillis();
		}
		if (afterDate != null) {	        
	        Calendar afterCal = Calendar.getInstance();
	        afterCal.setTime(afterDate);
	        after = afterCal.getTimeInMillis();
		}        
        duration=(after - before);
		
		return (int)duration;
	}

	/**
	 * 二つの時間の差を計算します。
	 * @param beforeDate 比較する日付です。
	 * @param afterDate 比較する日付です。
	 * @return 時間の差をミリ秒で返します。
	 * @since 1.0.0
	 */
	public static int SqlTimeLagToInt(java.sql.Date beforeDate, java.sql.Date afterDate) {
		long duration;
		long before = 0;
		long after = 0;
		if (beforeDate != null) {	        
	        Calendar beforeCal = Calendar.getInstance();
	        beforeCal.setTime(beforeDate);
	        before = beforeCal.getTimeInMillis();
		}
		if (afterDate != null) {	        
	        Calendar afterCal = Calendar.getInstance();
	        afterCal.setTime(afterDate);
	        after = afterCal.getTimeInMillis();
		}        
        duration=(after - before);
		
		return (int)duration;
	}
	
	/**
	 * 二つの時間の差を計算します。
	 * @param beforeDate 比較する日付です。
	 * @param afterDate 比較する日付です。
	 * @return 時間の差をミリ秒で返します。
	 * @since 1.0.0
	 */
	public static long TimeLagToLong(Date beforeDate,Date afterDate) {
		long duration;
		long before = 0;
		long after = 0;
		if (beforeDate != null) {	        
	        Calendar beforeCal = Calendar.getInstance();
	        beforeCal.setTime(beforeDate);
	        before = beforeCal.getTimeInMillis();
		}
		if (afterDate != null) {	        
	        Calendar afterCal = Calendar.getInstance();
	        afterCal.setTime(afterDate);
	        after = afterCal.getTimeInMillis();
		}        
        duration=(before - after);
		
		return (int)duration;
	}
	
	/**
	 * 二つの時間の差を計算します。
	 * @param beforeDate 比較する日付です。
	 * @param afterDate 比較する日付です。
	 * @return 時間の差をミリ秒で返します。
	 * @since 1.0.0
	 */
	public static long SqlTimeLagToLong(java.sql.Date beforeDate, java.sql.Date afterDate) {
		long duration;
		long before = 0;
		long after = 0;
		if (beforeDate != null) {	        
	        Calendar beforeCal = Calendar.getInstance();
	        beforeCal.setTime(beforeDate);
	        before = beforeCal.getTimeInMillis();
		}
		if (afterDate != null) {	        
	        Calendar afterCal = Calendar.getInstance();
	        afterCal.setTime(afterDate);
	        after = afterCal.getTimeInMillis();
		}        
        duration=(before - after);
		
		return (int)duration;
	}
	
	/**
	 * {@link java.util.Date} を {@link java.sql.Date} に変換します。
	 * @param dt 変換する {@link java.util.Date} のインスタンスです。
	 * @return 変換した {@link java.sql.Date} のインスタンスを返します。
	 * @since 1.0.0
	 */
	public static java.sql.Date dateToSqlDate(Date dt) {
		if (dt != null) {
			return new java.sql.Date(dt.getTime());
		} else {
			return null;
		}
	}
	
	/**
	 * {@link java.sql.Date} を {@link java.util.Date} に変換します。
	 * @param sqlDt 変換する {@link java.sql.Date} のインスタンスです。
	 * @return 変換した {@link java.util.Date} のインスタンスを返します。
	 * @since 1.0.0
	 */
	public static Date sqlDateToDate(java.sql.Date sqlDt) {
		if (sqlDt != null) {
			return new Date(sqlDt.getTime());
		} else {
			return null;
		}
	}
	
	/**
	 * {@link java.util.Date} を {@link java.sql.Timestamp} に変換します。
	 * @param dt 変換する {@link java.util.Date} のインスタンスです。
	 * @return 変換した {@link java.sql.Timestamp} のインスタンスを返します。
	 * @since 1.0.0
	 */
	public static Timestamp dateToTimestamp(Date dt) {
		if (dt != null) {
			return new Timestamp(dt.getTime());
		} else {
			return null;
		}
	}
	
	/**
	 * {@link java.sql.Date} を {@link java.sql.Timestamp} に変換します。
	 * @param sqlDt 変換する {@link java.sql.Date} のインスタンスです。
	 * @return 変換した {@link java.sql.Timestamp} のインスタンスを返します。
	 * @since 1.0.0
	 */
	public static Timestamp sqlDateToTimestamp(java.sql.Date sqlDt) {
		if (sqlDt != null) {
			return new Timestamp(sqlDt.getTime());
		} else {
			return null;
		}
	}
	
	public static Date add(Date dt, DateUnit unit, int value) {
		if (dt != null && unit != null) {
			Calendar cal = Calendar.getInstance();
			cal.setTime(dt);
			
			int field = -1;
			
			switch (unit) {
			case Millisecond:
				field = Calendar.MILLISECOND;
				break;
			case Second:
				field = Calendar.SECOND;
				break;
			case Minute:
				field = Calendar.MINUTE;
				break;
			case Hour:
				field = Calendar.HOUR;
				break;
			case Day:
				field = Calendar.DATE;
				break;
			case Month:
				field = Calendar.MONTH;
				break;
			case Year:
				field = Calendar.YEAR;
				break;
			}
			
			cal.add(field, value);
			
			return cal.getTime();
		} else {
			return null;
		}
	}
	
	public static java.sql.Date add(java.sql.Date dt, DateUnit unit, int value) {
		if (dt != null && unit != null) {
			Calendar cal = Calendar.getInstance();
			cal.setTime(dt);
			
			int field = -1;
			
			switch (unit) {
			case Millisecond:
				field = Calendar.MILLISECOND;
				break;
			case Second:
				field = Calendar.SECOND;
				break;
			case Minute:
				field = Calendar.MINUTE;
				break;
			case Hour:
				field = Calendar.HOUR;
				break;
			case Day:
				field = Calendar.DATE;
				break;
			case Month:
				field = Calendar.MONTH;
				break;
			case Year:
				field = Calendar.YEAR;
				break;
			}
			
			cal.add(field, value);
			
			return dateToSqlDate(cal.getTime());
		} else {
			return null;
		}
	}
	
	/**
	 * 時間の形式(hh:mm:ss)に変換する
	 * 
	 * @param duration
	 * @return
	 */
	public static String toTimeFormat(int duration) {
		int hours = duration / (1000*60*60);
		int minutes = duration % (1000*60*60) / (1000*60);
		int seconds = (duration % (1000*60*60)) % (1000*60) / 1000;
		return (hours>0? hours+":": "") + minutes + ":" + (seconds<10?"0":"") + seconds;
	}

	/**
	 * 端末のTimeZoneを取得
	 * @return LocalのTimezone
     */
	public static String getLocalTimeZone() {
		Calendar c = Calendar.getInstance();
		TimeZone tz = c.getTimeZone();
		return tz.getID();
	}

	/**
	 * 時間の形式(EEE, dd MMM yyyy HH:mm:ss GMT)に変換する
	 *
	 * @param date
	 * @return
	 */
	public static String lastModifiedConnectFormatGmt(Date date) {
		SimpleDateFormat df = new SimpleDateFormat(DateTimeFormat.ifModifiedSinceType, Locale.US);
		df.setTimeZone(TimeZone.getTimeZone("GMT"));
		return df.format(date)+ " GMT";
	}

    /**
     * 端末の日付が2013年未満か判断
     * @return 端末日付が2013年未満はtrue, 2013年以上はfalseで返します。
     *
     */
	public static boolean isAbnormalYear() {
        int currentYear = Integer.parseInt(toStringInTimeZone(new Date(), DateTimeFormat.yyyy, "UTC"));
        return currentYear < 2013;
    }

    /**
     * Whether date1 is before of date2
     * @param date1
     * @param date2
     * @return
     */
    public static boolean isDateBefore(Date date1, Date date2) {
        Calendar calendar1 = Calendar.getInstance();
        calendar1.setTime( date1 );
        calendar1.set(Calendar.HOUR_OF_DAY, 0);
        calendar1.set(Calendar.MINUTE, 0);
        calendar1.set(Calendar.SECOND, 0);
        calendar1.set(Calendar.MILLISECOND, 0);

        Calendar calendar2 = Calendar.getInstance();
        calendar2.setTime( date2 );
        calendar2.set(Calendar.HOUR_OF_DAY, 0);
        calendar2.set(Calendar.MINUTE, 0);
        calendar2.set(Calendar.SECOND, 0);
        calendar2.set(Calendar.MILLISECOND, 0);

        return calendar1.before(calendar2);
    }
Lee Munkyeong committed
587 588 589


	public static String millToDateString(long mills) {
590
		SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss");
Lee Munkyeong committed
591
		Date timeInDate = new Date(mills);
592
		String timeInFormat = dateFormat.format(timeInDate);
Lee Munkyeong committed
593 594 595
		return timeInFormat;
	}

Lee Munkyeong committed
596 597 598 599 600 601 602
	public static String millToDateString(long mills, String format) {
		SimpleDateFormat dateFormat = new SimpleDateFormat(format);
		Date timeInDate = new Date(mills);
		String timeInFormat = dateFormat.format(timeInDate);
		return timeInFormat;
	}

Lee Jaebin committed
603
}