我正在构建一个查询OpenWeatherMap API的Android应用程序。在大多数情况下,一切正常。问题是当我计算提要提供的 unix 时间戳时。时间戳根据 GMT 设置。因此,如果您住在伦敦并查看下面的 json 提要以了解东京当前的天气状况,您会提供误导性的"日出"信息,因为输出显示日出(unix 值 1457298145) = 星期日, 06 Mar 2016 21:02:25 GMT.日出根据格林威治标准时间或伦敦时间设置。如何使用下面的 Feed 根据目标城市(东京)当地时间而不是格林威治标准时间计算日出?这可以通过下面的 json 提要实现这一点吗?用户可以选择世界上任何城市以获取当前天气信息。挑战在于根据用户在 Java 中以编程方式选择的城市提供日出信息。
东京当前天气预报:
http://api.openweathermap.org/data/2.5/weather?id=1850147&appid=44db6a862fba0b067b1930da0d769e98
馈送响应:
{
"coord": {
"lon": 139.69,
"lat": 35.69
},
"weather": [
{
"id": 500,
"main": "Rain",
"description": "light rain",
"icon": "10n"
}
],
"base": "cmc stations",
"main": {
"temp": 285.91,
"pressure": 1026.25,
"humidity": 97,
"temp_min": 285.91,
"temp_max": 285.91,
"sea_level": 1030.08,
"grnd_level": 1026.25
},
"wind": {
"speed": 1.17,
"deg": 174.003
},
"rain": {
"3h": 0.1475
},
"clouds": {
"all": 56
},
"dt": 1457361634,
"sys": {
"message": 0.0048,
"country": "JP",
"sunrise": 1457298145,
"sunset": 1457340136
},
"id": 1850147,
"name": "Tokyo",
"cod": 200
}
我应该创建什么方法,以便
public static String getSunriseTime(int timeStamp) {
//What should I do here with the info from the feed above?
}
您只需要将java日历对象的时区设置为东京或其他什么。以下代码片段对我有用:
import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.TimeZone;
class Xxx {
public static void main(String[] args) {
Calendar calendar = new GregorianCalendar(TimeZone.getTimeZone("Asia/Tokyo"));
calendar.setTimeInMillis(1457298145 * 1000L);
System.out.println(calendar.toString());
}
}