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.
我想在 android 设备上获取与 UTC 相关的时区。例如,如果我在 PST 时区,那么我希望它采用这种格式:“-0800”。可能吗?
这个片段给我 PST 时区表示为“-0800”,这是 PST 的 UTC 表示。这只是格式的问题。感谢 SimpleDateFormat 类。
Calendar cal = Calendar.getInstance(Locale.getDefault()); String timezoneStr = new SimpleDateFormat("Z").format(cal.getTime());