我正在构建一个查询OpenWeatherMap API的Android应用。在大多数情况下,一切都很好。问题是当我计算Feed提供的unix时间戳时。时间戳根据GMT设置。因此,如果您居住在伦敦并查看下面的json饲料,了解东京当前的天气情况,您会给出误导性的"日出"信息,因为输出显示日出(unix值1457298145)=太阳,2016年3月6日21:02:25 GMT 。日出根据GMT或伦敦时间设定。我如何根据目标城市(东京)当地时间而不是GMT使用下面的Feed来计算日出?这有可能通过下面的json feed实现吗?用户可以选择世界上任何城市的当前天气信息。接下来的挑战是根据用户在Java中以编程方式选择的城市提供日出信息。
东京当前天气Feed:
http://api.openweathermap.org/data/2.5/weather?id=1850147&appid=44db6a862fba0b067b1930da0d769e98
Feed响应:
{
"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?
}
答案 0 :(得分:0)
您只需将java Calendar对象的时区设置为Tokyo,或其他任何内容。以下代码段对我有用:
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());
}
}