Android 如何用HttpClient 以Post方式提交資料並添加http頭資訊

來源:互聯網
上載者:User

標籤:

轉自:http://www.linuxidc.com/Linux/2011-09/42772.htm

Android 如何 post json格式的資料,並附加http頭,接受返回資料,請看下面的代碼:

 1     private void HttpPostData() { 2         try { 3             HttpClient httpclient = new DefaultHttpClient(); 4             String uri = "http://www.yourweb.com"; 5             HttpPost httppost = new HttpPost(uri); 6             // 添加http頭資訊 7             httppost.addHeader("Authorization", "your token"); // 認證token 8             httppost.addHeader("Content-Type", "application/json"); 9             httppost.addHeader("User-Agent", "imgfornote");10             // http post的json資料格式: {"name": "your name","parentId":11             // "id_of_parent"}12             JSONObject obj = new JSONObject();13             obj.put("name", "your name");14             obj.put("parentId", "your parentid");15             httppost.setEntity(new StringEntity(obj.toString()));16             HttpResponse response;17             response = httpclient.execute(httppost);18             // 檢驗狀態代碼,如果成功接收資料19             int code = response.getStatusLine().getStatusCode();20             if (code == 200) {21                 String rev = EntityUtils.toString(response.getEntity());// 返回json格式:22                                                                         // {"id":23                                                                         // "27JpL~j4vsL0LX00E00005","version":24                                                                         // "abc"}25                 obj = new JSONObject(rev);26                 String id = obj.getString("id");27                 String version = obj.getString("version");28             }29         } catch (ClientProtocolException e) {30         } catch (IOException e) {31         } catch (Exception e) {32         }33     }

主要用到的類有:org.apache.http.client.HttpClient 、org.apache.http.client.methods.HttpPost 和 org.json.JSONObject

Android 如何用HttpClient 以Post方式提交資料並添加http頭資訊

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.