반응형
Java 자바 UNIX Timestamp 변환 timestamp to date String
Unix timestamp 를 Date String으로 변환하는 함수
private static String getTimestampToDate(String timestampStr){
long timestamp = Long.parseLong(timestampStr);
Date date = new java.util.Date(timestamp*1000L);
SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
sdf.setTimeZone(java.util.TimeZone.getTimeZone("GMT+9"));
String formattedDate = sdf.format(date);
return formattedDate;
}
Ex)
public static void main(String[] args) throws IOException{
String dateStr = getTimestampToDate("1563336439");
System.out.println(dateStr);
}
Result)
2019-07-17 13:07:19 |
Link : javascript 자바스크립트 UNIX Timestamp 변환 timestamp to date String
Link : Oracle 오라클 UNIX Timestamp 변환 timestamp to date String
반응형
'Programing > JAVA' 카테고리의 다른 글
Java String 에 대해 깊게 파고들어 보자~! (1) | 2019.08.01 |
---|---|
Java xml 파일 생성 및 내용 출력 방법 jaxb marshalling (0) | 2019.07.24 |
Java Exception 처리 예외 처리 try catch 알짜만 빼먹기 (1) | 2019.07.11 |
[launch4j] jar파일로 exe 파일만드는 방법 how to make exe file to jar file (1) | 2019.06.11 |
Spring Boot Multiple Database Configuration + Mybatis +HikariCP, MySQL, Oracle, Using Mapper annotation (1) | 2019.04.02 |
댓글