Programing/JAVA

Java 자바 UNIX Timestamp 변환 timestamp to date String

리커니 2019. 7. 17.
반응형

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

 

javascript 자바스크립트 UNIX Timestamp 변환 timestamp to date String

javascript 자바스크립트 UNIX Timestamp 변환 timestamp to date String Unix timestamp 를 Date String으로 변환하는 함수 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 function getTimestampToDate(timestamp){ var d..

aljjabaegi.tistory.com

Link : Oracle 오라클 UNIX Timestamp 변환 timestamp to date String

 

Oralce 오라클 UNIX Timestamp 변환 timestamp to date String

Oralce 오라클 UNIX Timestamp 변환 timestamp to date String Unix timestamp 를 Date String으로 변환하는 방법 1 TO_CHAR(변환컬럼명 / (60 * 60 * 24) + TO_DATE('19700101090000', 'YYYYMMDDHH24MISS'), 'YYY..

aljjabaegi.tistory.com

반응형

댓글

💲 추천 글