大家好我想在flightradar24.com上解析一个航班 我已尝试使用JSOUP和Android但结果为空。
http://postimg.org/image/6hdmp4hgv/
我看过...... JSOUP不支持dinamyc网页。 有一个解决方案吗? 我想得到纬度,经度等等 提前谢谢!
答案 0 :(得分:3)
在此网站中,航班详细信息通过JavaScript ajax调用进行查询。因此,在页面加载后,他们会调用http://db8.flightradar24.com/zones/full_all.js?callback=pd_callback&_=1401126256649的ajax调用来获取航班详细信息。如果我们放大特定部分,它会使用单独的JavaScript文件,比如说对于欧洲,他们使用europe_all.js。这基本上返回一个包含所有航班详细信息的json,包括高度等速度。这被保持为键值对,键是航班ID,值是一系列细节。
首先我们需要获取此json,然后解析它以获取作为密钥的航班ID,然后再次调用http://bma.fr24.com/_external/planedata_json.1.4.php?f=36c0ad6&callback=flight_data_service_cb&_=1401126256666以获取详细航班航迹,名称开始时间,结束时间,状态等。轨迹以纬度和经度的数组给出,前两个元素指向当前位置。
对于两个url,结束数字是System.currentTimeMillis();
。对于第二个网址,参数" f"实际上是航班ID,这是第一个json的关键。所以下面的程序将解析这两个json并给你数据。
我使用了full_all.js,它提供了非常庞大的所有航班信息。为了限制网络呼叫,我在for循环中放了一个中断。所以这个程序只打印第一次飞行的细节。如果你删除了休息时间,你将获得所有航班的所有详细信息,但在中途你就像10000次呼叫一样。
第一个json本身为您提供了足够的信息,如下面给出的那样。它只是来自第一个json的一个条目,它表示带有id" 36c0ae5",注册键" 0D05AD",当前纬度(25.54),lon(-99.24),速度287,高度的航班16650英尺等等
"36c0ae5": [
"0D05AD",
25.54,
-99.24,
287,
16650,
354,
"0610",
"F-KBRO1",
"A320",
"XA-BIC",
1401129559,
"CUN",
"MTY",
"4O321",
0,
-1920,
"AIJ321",
0
]
程序
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Map.Entry;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
public class FlightDetails {
public static void main(String[] args) throws Exception {
String allFlightsURL = "http://db8.flightradar24.com/zones/full_all.js?callback=pd_callback&_=" + System.currentTimeMillis();
String allFlightsJsonString = getJsonString(allFlightsURL);
JsonParser parser = new JsonParser();
JsonObject allFlightsJsonData = (JsonObject)parser.parse(allFlightsJsonString);
String singleFlightUrl = "http://bma.fr24.com/_external/planedata_json.1.4.php?f=###&callback=flight_data_service_cb&_=";
for(Entry<String, JsonElement> allFlightEntry : allFlightsJsonData.entrySet()){
StringBuilder urlBuilder = new StringBuilder(singleFlightUrl.replaceAll("###", allFlightEntry.getKey())).append(System.currentTimeMillis());
System.out.println(allFlightEntry.getKey() + " = " + allFlightEntry.getValue());
String singleFlightJsonString = getJsonString(urlBuilder.toString());
JsonObject singleFlightJsonData = (JsonObject)parser.parse(singleFlightJsonString);
for(Entry<String, JsonElement> singleFlightEntry : singleFlightJsonData.entrySet()){
System.out.println(singleFlightEntry.getKey() + " = " + singleFlightEntry.getValue());
}
break; // Breaking to avoid huge network calls.
}
System.out.println("Done");
}
private static String getJsonString(String allFlightsURL) throws IOException {
HttpURLConnection connection = (HttpURLConnection) ((new URL(allFlightsURL).openConnection()));
connection.setDoOutput(true);
connection.setRequestProperty("Content-Type", "application/json");
connection.setRequestProperty("Accept", "application/json");
connection.setRequestMethod("GET");
connection.connect();
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
StringBuilder buffer = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
buffer.append(line);
}
return buffer.substring(buffer.indexOf("(") + 1, buffer.lastIndexOf(")"));
}
}
答案 1 :(得分:0)