0

Long でローカル時間を取得するこのメソッドがあり、それを UTC に変更して結果を Long で返したいのですが、次のようにします。UTC への変更が機能していないようです。

private Long convertToUtc(Long localTime){

  DateTime dt = new DateTime(localTime);
  dt.toDateTime(DateTimeZone.UTC);
  return  dt.getMillis();
 }
4

1 に答える 1