在Spark中,可以使用Scala語言的System.currentTimeMillis()
方法來獲取當前時間戳。具體代碼如下:
val currentTimeMillis = System.currentTimeMillis()
println("Current timestamp: " + currentTimeMillis)
在Spark中也可以使用java.sql.Timestamp
類來獲取當前時間戳,具體代碼如下:
import java.sql.Timestamp
val currentTimeStamp = new Timestamp(System.currentTimeMillis())
println("Current timestamp: " + currentTimeStamp)