使用する - Calendar#getTimeInMillis
:
Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
long time = cal.getTimeInMillis();
System.currentTimeMillis() を使用できます。これは、「現在の時刻と1970年1月1日UTCの深夜0時のミリ秒単位の差」を返します。
long time = System.currentTimeMillis();
それをします:)
カレンダークラスを使用して、タイムゾーンとしてGMTを使用してインスタンスを作成します。
そこからミリ秒単位で時間を取得できます。
以下のコードサンプルを参照してください。
public class TimeTest {
public static void main(String [] args) {
Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
System.out.println(cal.currentTimeMillis());
}
}
お役に立てれば。
getTime() 関数を使用します:
このDateオブジェクトで表される1970年1月1日00:00:00GMTからのミリ秒数を返します。