Android Get Current timestamp?

前端 未结 12 861
灰色年华
灰色年华 2020-11-27 09:53

I want to get the current timestamp like that : 1320917972

int time = (int) (System.currentTimeMillis());
Timestamp tsTemp = new Timestamp(t         


        
12条回答
  •  醉酒成梦
    2020-11-27 10:46

    Solution in Kotlin:

    val nowInEpoch = Instant.now().epochSecond
    

    Make sure your minimum SDK version is 26.

提交回复
热议问题