我有一个将网站转换为移动格式的应用程序。应用程序中有一个微调器。所以我的疑问是,我如何将这些选定值从我的微调器传递到网站以获得结果?
答案 0 :(得分:1)
您需要发出http帖子请求。
http://developer.android.com/reference/org/apache/http/client/HttpClient.html
注意:如果您正在进行与网络相关的操作,则应使用AsyncTask,否则您将获得NetworkOnMainThreadException(Honeycomb及更高版本)。
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
}
}
以下链接中提供了一些源代码链接
http://www.androidhive.info/2011/10/android-making-http-requests/
http://android-er.blogspot.in/2011/09/example-of-httppost-on-android.html
答案 1 :(得分:0)
由于您在WebView容器中运行移动Web应用程序,因此您可以使用知名库(如jQuery及其ajax)。