在android中使用HTTP post上传文件

时间:2011-09-29 22:21:45

标签: android http http-post

我想通过wifi通过Android上传HTTP服务器将一些数据上传到服务器。我正在使用

       HttpClient httpclient = new DefaultHttpClient();
       HttpPost httppost = new HttpPost(address);
       //then I assign name value pairs using httppost.setEntity
       HttpResponse response = httpclient.execute(httppost);

执行HTTP Post,但它会抛出IOException。我已经在权限中添加了android.permission.INTERNET。

有人能告诉wat出错吗?

0 个答案:

没有答案