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.
Long でローカル時間を取得するこのメソッドがあり、それを UTC に変更して結果を Long で返したいのですが、次のようにします。UTC への変更が機能していないようです。
private Long convertToUtc(Long localTime){ DateTime dt = new DateTime(localTime); dt.toDateTime(DateTimeZone.UTC); return dt.getMillis(); }