Notice
Recent Posts
Recent Comments
Link
투케이2K
74. (Go Lang) [Mac Os] Go 문법 : time 모듈 - LoadLocation 사용해 특정 로컬 포맷 형식 지정 , 현재 날짜 및 시간 출력 본문
Go Lang (Go 언어)
74. (Go Lang) [Mac Os] Go 문법 : time 모듈 - LoadLocation 사용해 특정 로컬 포맷 형식 지정 , 현재 날짜 및 시간 출력
투케이2K 2024. 2. 24. 10:11[개발 환경 설정]
개발 언어 : Go
[소스 코드]
package main
import (
"fmt"
"time"
)
func main() {
// ---------------------------------------------------
// [기본 설명]
// ---------------------------------------------------
// "time" 패키지를 사용해 기본 현재날짜 및 utc 시간 등을 확인할 수 있습니다
// ---------------------------------------------------
// Now : 현재 설정 된 로컬 실시간 시간을 확인합니다
// ---------------------------------------------------
// [LoadLocation : 특정 로컬 지역 형식 지정]
location, err := time.LoadLocation("Asia/Seoul")
//location, err := time.LoadLocation("America/Los_Angeles")
if err != nil {
panic(err)
}
// [Local 설정]
time.Local = location
// [변수 선언 및 현재 날짜, 시간 출력]
now := time.Now()
// [Format 사용해 출력 형식 변경 : yyyy-MM-dd HH:mm:ss]
format := now.Format("2006-01-02 15:04:05")
// [로그 출력]
fmt.Println("")
fmt.Println("----------------------------------------------")
fmt.Println("[로그 출력 수행]")
fmt.Println("----------------------------------------------")
fmt.Println("format : ", format)
fmt.Println("----------------------------------------------")
fmt.Println("")
}
[결과 출력]
반응형
'Go Lang (Go 언어)' 카테고리의 다른 글
Comments