Android Get Current timestamp?

前端 未结 12 831
灰色年华
灰色年华 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:26

    I suggest using Hits's answer, but adding a Locale format, this is how Android Developers recommends:

    try {
            SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault());
            return dateFormat.format(new Date()); // Find todays date
        } catch (Exception e) {
            e.printStackTrace();
    
            return null;
        }
    

提交回复
热议问题