Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AndroidでUnixタイムスタンプを作成するにはどうすればよいですか?
URLの最後にUnixタイムスタンプを付けてURLPOSTリクエストを作成したいと思います。
long unixTime = System.currentTimeMillis() / 1000L;
それは非常に簡単です:
long timestamp = Calendar.getInstance().getTime() / 1000;
long timeStamp = Calender.getInstance().getTime() / 1000L ;