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.
UTCに関してAndroidデバイスのタイムゾーンを取得したい。たとえば、PSTタイムゾーンにいる場合は、「-0800」の形式にします。出来ますか?
このスニペットは、PST の UTC 表現である「-0800」として表される PST タイムゾーンを提供します。それは単にフォーマットの問題でした。SimpleDateFormat クラスに感謝します。
Calendar cal = Calendar.getInstance(Locale.getDefault()); String timezoneStr = new SimpleDateFormat("Z").format(cal.getTime());