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.
2 つの問題があります。
1- Android デバイスから UTC 時刻を取得します 2- UNIX 時刻形式 (ミリ秒) に変換します
フィードバックが役に立てば幸いです
私はこれがうまくいくと信じています:
Date now = Calendar.getInstance().getTime(); // this gets you current time as a Date long milis = now.getTime(); // this gets you current time in UNIX format