본문 바로가기
JAVA

LocalDateTime,TimeStamp 이용 timestamp 값 얻기

by Hwoarang757 2023. 7. 3.

(new Date()).getTime() 이 Deprecate 상태 여서 다른 방법을 찾아 보았습니다.

 

module-info.java 

/**
 *
 */
module TestConsole {
	requires java.sql;
}

 

 

TestCls.java

package com.test;

import java.time.LocalDateTime;
import java.sql.Timestamp;

public class TestCls {

	public static void main(String[] args) {
        	LocalDateTime localDateTime = LocalDateTime.now();
        	Timestamp timeStamp = Timestamp.valueOf(localDateTime);
        	long lNow = timeStamp.getTime();

        	System.out.println(lNow);

	}

}