正在看《第一行代碼》,記錄一下使用 HTTP 協議訪問網路的內容吧! 在Android發送Http請求有兩種方式,HttpURLConnection和HttpClient。 1.使用HttpURLConnection 首先要獲取到HttpURLConnection的實例,只需要new出一個URL對象 ...
正在看《第一行代碼》,記錄一下使用 HTTP 協議訪問網路的內容吧!
在Android發送Http請求有兩種方式,HttpURLConnection和HttpClient。
1.使用HttpURLConnection
首先要獲取到HttpURLConnection的實例,只需要new出一個URL對象,並傳入目標網路地址,然後調用一下openConnect()方法。
1 URL url = new URL("http://www.baidu.com"); HttpURLConnection connection = (HttpURLConnection) url.openConnection();View Code
得到HttpURLConnection實例之後,設置HTTP請求使用的方法(POST和GET),GET是希望從伺服器得到數據,而POST就是希望發生數據到伺服器了。
connection.setRequestMethod("GET");View Code
這裡可以對connection做一些設置,讀取超時毫秒數,連接超時等等。
connection.setConnectTimeout(8000); connection.setReadTimeout(8000);View Code
接著調用getInputStream()方法就可以獲得伺服器返回的輸入流了,這時就可以對輸入流進行讀取。最後需要關閉connection。
InputStream in = connection.getInputStream();
connection.disconnect();
View Code
具體代碼(來自書本)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <Button android:id="@+id/send_request" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Send Request" /> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:id="@+id/response" android:layout_width="match_parent" android:layout_height="wrap_content" /> </ScrollView> </LinearLayout>View Code
public class MainActivity extends Activity implements OnClickListener { public static final int SHOW_RESPONSE = 0; private Button sendRequest; 第 10章 看看精彩的世界,使用網路技術 399 private TextView responseText; private Handler handler = new Handler() { public void handleMessage(Message msg) { switch (msg.what) { case SHOW_RESPONSE: String response = (String) msg.obj; // 在這裡進行UI操作,將結果顯示到界面上 responseText.setText(response); } } }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); sendRequest = (Button) findViewById(R.id.send_request); responseText = (TextView) findViewById(R.id.response_text); sendRequest.setOnClickListener(this); } @Override public void onClick(View v) { if (v.getId() == R.id.send_request) { sendRequestWithHttpURLConnection(); } } private void sendRequestWithHttpURLConnection() { // 開啟線程來發起網路請求 new Thread(new Runnable() { @Override public void run() { HttpURLConnection connection = null; try { URL url = new URL("http://www.baidu.com"); connection = (HttpURLConnection) url.openConnection(); 第一行代碼——Android 400 connection.setRequestMethod("GET"); connection.setConnectTimeout(8000); connection.setReadTimeout(8000); InputStream in = connection.getInputStream(); // 下麵對獲取到的輸入流進行讀取 BufferedReader reader = new BufferedReader(new InputStreamReader(in)); StringBuilder response = new StringBuilder(); String line; while ((line = reader.readLine()) != null) { response.append(line); } Message message = new Message(); message.what = SHOW_RESPONSE; // 將伺服器返回的結果存放到Message中 message.obj = response.toString(); handler.sendMessage(message); } catch (Exception e) { e.printStackTrace(); } finally { if (connection != null) { connection.disconnect(); } } } }).start(); } }View Code
最後別忘了添加網路許可權。
<uses-permission android:name="android.permission.INTERNET" />
另外如果想向伺服器發送數據,只需要將 HTTP請求 的方法改成 POST,併在獲取輸入流之前把要提交的數據寫出即可,註意每條數據都要以鍵 值對的形式存在,數據與數據之間用&符號隔開,比如說我們想要向伺服器提交用戶名和密 碼,就可以這樣寫:
connection.setRequestMethod("POST");
DataOutputStream out = new DataOutputStream(connection.getOutputStream());
out.writeBytes("username=admin&password=123456");