Notice
Recent Posts
Recent Comments
Link
투케이2K
79. (kotlin/코틀린) currentTimeMillis 사용해 timeStamp 타임 스탬프 확인 및 SimpleDateFormat Date 포맷 출력 실시 본문
Kotlin
79. (kotlin/코틀린) currentTimeMillis 사용해 timeStamp 타임 스탬프 확인 및 SimpleDateFormat Date 포맷 출력 실시
투케이2K 2022. 9. 28. 08:17[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// TODO [테스트 메소드 정의 실시]
fun testMain(){
Log.i("---","---")
Log.d("//===========//","================================================")
Log.i("","\n"+"[Test_Kotlin > testMain() 메소드 : 테스트 함수 동작 실시]")
Log.d("//===========//","================================================")
Log.i("---","---")
/**
* ------------------------------------
* TODO [요약 설명]
* ------------------------------------
* 1. 현재 시간을 milliseconds 단위로 확인해 13 자리 Timestamp 타임스탬프 값을 반환해줍니다
* ------------------------------------
* */
// [로직 처리 실시]
try{
// ------------------------------------
// [13 자리 타임 스탬프 확인 실시]
val timeStamp = System.currentTimeMillis()
// [타임 스탬프를 특정 날짜 형식으로 변환 실시]
val sdf = SimpleDateFormat("yyyy-MM-dd kk:mm:ss")
val toDate = sdf.format(timeStamp)
// [로그 출력 실시]
Log.i("---","---")
Log.w("//===========//","================================================")
Log.i("","\n"+"[Test_Kotlin > testMain() 메소드 : 로그 결과 확인 실시]")
Log.i("","\n"+"[timeStamp : "+ timeStamp +"]")
Log.i("","\n"+"[toDate : "+ toDate +"]")
Log.w("//===========//","================================================")
Log.i("---","---")
// ------------------------------------
}
catch(e : Exception){
Log.i("---","---")
Log.e("//===========//","================================================")
Log.i("","\n"+"[Test_Kotlin > testMain() 메소드 : 에러 상황 발생]")
Log.i("","\n"+"[error : "+ e.message +"]")
Log.e("//===========//","================================================")
Log.i("---","---")
}
}
[결과 출력]
반응형
'Kotlin' 카테고리의 다른 글
Comments