현재 시각을 컨솔에 보여주는 간단한 애플리케이션의 Groovy 언어 소스 코드이다.
UTC란 1970년 1월 1일 0시 0분 0초를 기준으로 하여 경과된 초 단위의 총 시간을 의미한다.
* UTC(Universal Time Coordinated, 협정세계시, 協定世界時)
UTC란 1970년 1월 1일 0시 0분 0초를 기준으로 하여 경과된 초 단위의 총 시간을 의미한다.
* UTC(Universal Time Coordinated, 협정세계시, 協定世界時)
- /*
- * Filename: testCTime.groovy
- *
- * Execute: groovy testCTime.groovy
- */
- public class TestCTimeApp {
- static def weekNames = [ "일", "월", "화", "수", "목", "금", "토" ].asImmutable()
- public static void main(String[] args) {
- Calendar now = new GregorianCalendar()
- // 1970년 1월 1일 0시 0분 0초부터 시작하여 현재까지의 초
- println("UTC: " + (now.getTime().getTime().intdiv(1000L)) + "초")
- // 현재 시각 표시: 200x년 x월 xx일 (x요일) xx시 xx분 xx초
- print(now.get(Calendar.YEAR) + "년 ")
- print((1 + now.get(Calendar.MONTH)) + "월 ")
- print(now.get(Calendar.DAY_OF_MONTH) +"일 ")
- print("(" + weekNames[now.get(Calendar.DAY_OF_WEEK)] + "요일) ")
- print(now.get(Calendar.HOUR_OF_DAY) + "시 ")
- print(now.get(Calendar.MINUTE) + "분 ")
- println(now.get(Calendar.SECOND) + "초")
- // 1월 1일은 1, 1월 2일은 2
- print("올해 몇 번째 날: " + now.get(Calendar.DAY_OF_YEAR) +", ")
- // 0 이면 서머타임 없음
- println("서머타임 적용 여부: " + (now.get(Calendar.DST_OFFSET) == 0 ? "안함" : "함"))
- }
- }
실행> groovy testCTime.groovy
UTC: 1206324111초
2008년 3월 24일 (화요일) 11시 1분 51초
올해 몇 번째 날: 84, 서머타임 적용 여부: 안함
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
'프로그래밍 > Groovy' 카테고리의 다른 글
대화형 모드의 진법(radix) 변환 예제 with Groovy (0) | 2008.03.28 |
---|---|
황금비율(golden ratio) 구하기 with Groovy (0) | 2008.03.24 |
조립제법(Horner의 방법) 예제 (2) for Groovy (0) | 2008.03.14 |
조립제법(Horner의 방법) 예제 (1) for Groovy (0) | 2008.03.14 |
80컬럼 컨솔에 19단표 출력하기 예제 (2) for Groovy (0) | 2008.03.03 |