我正在尝试将数据从android发布到PHP服务器。 由于某种原因,数据没有发布。
我的数据未发布。我已经给出了下面的代码。 任何人都可以告诉我为什么会这样吗?该应用程序不会丢失任何错误。
public void postNow()
{
new Thread(new Runnable() {
@Override
public void run() {
try {
HttpClient client = new DefaultHttpClient();
URI uri = new URI(SERVER_URL);
HttpPost Newpost = new HttpPost(uri);
List<NameValuePair> pairs = new ArrayList<NameValuePair>();
pairs.add(new BasicNameValuePair("value1", value1));
pairs.add(new BasicNameValuePair("value2", value2));
Newpost.setEntity(new UrlEncodedFormEntity(pairs));
HttpResponse response = client.execute(Newpost);
Log.v("HTTPResponseOut",response.toString());
}
catch(URISyntaxException e ) {
}
catch(UnsupportedEncodingException e){
}
catch(ClientProtocolException e) {
}
catch (IOException e) {
}
}
}).start();
}