Recent Posts
Recent Comments
«   2024/05   »
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
관리 메뉴

Dev.

현재 날짜를 얻기 본문

Android

현재 날짜를 얻기

Pppdw 2015. 7. 21. 12:31
 

/** @Author : pppdw
	 * @Description : 현재 날짜 겟 */
	public static String getCurrentDate(){
		Date currentDate = new Date();
		SimpleDateFormat dFormater = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		String strCurrentTime = dFormater.format(currentDate);
		
		return strCurrentTime;
	}

Comments