可以在网站上发送查询(动态)并在Android应用程序上检索结果。我是android的新手。 如果有可能,您可以指导我哪个api / site有助于执行上述操作。
例如:如果我输入航班的号码,有一个站点告诉我航班的时间和出发时间。所以基本上我想从应用程序输入航班的号码,并显示结果的时间。
P.S:如果问题不清楚。我很乐意让它更清楚答案 0 :(得分:0)
是的,可以向网站发送查询。
public void postData() {
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://www.yoursite.com/script.php");
try {
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("id", "12345"));
nameValuePairs.add(new BasicNameValuePair("stringdata", "AndDev is Cool!"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
} catch (IOException e) {
// TODO Auto-generated catch block
}
}