Android/개념 및 예제2019. 2. 25. 11:26Android SimpleDateFormat 예제 - 현재날짜 년, 월, 일, 요일 출력하기
SimpleDateFormat를 사용하여 현재 날짜를 출력하는 예제입니다. Date currentTime = Calendar.getInstance().getTime(); SimpleDateFormat weekdayFormat = new SimpleDateFormat("EE", Locale.getDefault()); SimpleDateFormat dayFormat = new SimpleDateFormat("dd", Locale.getDefault()); SimpleDateFormat monthFormat = new SimpleDateFormat("MM", Locale.getDefault()); SimpleDateFormat yearFormat = new SimpleDateFormat("yyyy", Loca..