gpt4 book ai didi

java - 如何使用 Google Time Zone API 获取 GMT

转载 作者:搜寻专家 更新时间:2023-11-01 08:21:07 24 4
gpt4 key购买 nike

我想检索印度的 GMT(5.5) 或其他国家/地区的 GMT(5.5)。下面是我使用 Google Time Zone API 的代码,即将到来的响应是关于 dstoffset、rawOffset、status、timeZoneId、timeZoneName 的。我的问题是如何获得 GMT (5.5) 谢谢

 final String registerURL = "https://maps.googleapis.com/maps/api/timezone/json?location=30.293461,78.524094&timestamp=1331161200&key=API_KEY";
StringRequest stringRequest = new StringRequest(Request.Method.POST, registerURL, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
try {
JSONObject obj = new JSONObject(response);
String s1 = obj.getString("dstOffset");
String s2 = obj.getString("rawOffset");
String s3 = obj.getString("status");
String s4 = obj.getString("timeZoneId");
String s5 = obj.getString("timeZoneName");
TimeZone tz1 = TimeZone.getTimeZone(s4);
TimeZone tz2 = TimeZone.getTimeZone(s4);
tvTimeZone.setText(String.valueOf(tz2));

} catch (JSONException e) {
e.printStackTrace();
}
}
}, new Response.ErrorListener() {
@Override
// Handles errors that occur due to Volley
public void onErrorResponse(VolleyError error) {
Log.e("Volley", "Error");
}
}
);

RequestQueue requestQueue = Volley.newRequestQueue(MainActivity.this);
requestQueue.add(stringRequest);

最佳答案

rawOffset is the offset from UTC (in seconds) for the given location.

由于 UTC 和 GMT 之间没有时差,将 rawOffset 除以 3600 可以得到您请求的时区的 GMT 时间。

显然,当除以 3600 时,答案是小时的分数,而不是 hour:min 对。所以,如果你得到输出,比方说,4.50,那实际上是 4.5 小时,这与 4:30 小时(4 小时 30 分钟).

关于java - 如何使用 Google Time Zone API 获取 GMT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50885249/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com