標籤:android blog http io ar os 使用 java sp
HttpClient為Android開發人員提供了跟簡潔的操作Http網路連接的方法,在串連過程中也有兩種方式,get和post,先看一下怎樣實現的
預設是get方式
//先將參數放入List,再對參數進行URL編碼 List<BasicNameValuePair> params = new LinkedList<BasicNameValuePair>(); params.add(new BasicNameValuePair("param1", "中國")); params.add(new BasicNameValuePair("param2", "value2")); //baseUrl String baseUrl = "http://www.baidu.com"; //將URL與參數拼接 HttpGet getMethod = new HttpGet(baseUrl + "?" + param); HttpClient httpClient = new DefaultHttpClient(); try { HttpResponse response = httpClient.execute(getMethod); //發起GET請求 Log.i(TAG, "resCode = " + response.getStatusLine().getStatusCode()); //擷取響應碼 Log.i(TAG, "result = " + EntityUtils.toString(response.getEntity(), "utf-8"));//擷取server響應內容 } catch (ClientProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }
post方式
//和GET方式一樣,先將參數放入List params = new LinkedList<BasicNameValuePair>(); params.add(new BasicNameValuePair("param1", "Post方法")); params.add(new BasicNameValuePair("param2", "第二個參數")); try { HttpPost postMethod = new HttpPost(baseUrl); postMethod.setEntity(new UrlEncodedFormEntity(params, "utf-8")); //將參數填入POST Entity中 HttpResponse response = httpClient.execute(postMethod); //運行POST方法 Log.i(TAG, "resCode = " + response.getStatusLine().getStatusCode()); //擷取響應碼 Log.i(TAG, "result = " + EntityUtils.toString(response.getEntity(), "utf-8")); //擷取響應內容 } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (ClientProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } 假設須要在獲得網路資源後,去更新UI的一些東西,須要使用非同步方式,否則會錯誤發生
Handler handler = new Handler() { @Override public void handleMessage(Message msg) { if (msg.what == 0x123) { tv.setText(result); } } }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); tv = (TextView) findViewById(R.id.tv); result = ""; final HttpClient httpclient = new DefaultHttpClient(); new Thread() { public void run() { HttpGet httpRequest = new HttpGet( "http://www.baidu.com"); try { HttpResponse httpResponse = httpclient.execute(httpRequest); if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) { // 取得返回的字串 result = EntityUtils.toString(httpResponse.getEntity()); //tv.setText(result);//假設在這裡來使用會報錯 Message msg = new Message(); msg.what = 0x123; handler.sendMessage(msg); } } catch (ClientProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }.start(); }
Android使用HttpClient方法和易錯問題