利用HttpURLConnection對象和Internet互動

來源:互聯網
上載者:User
1.從Internet擷取網頁
發送請求,將網頁以流的形式讀回來.
1)建立一個URL對象:URL url = new URL("http://www.sohu.com");
2)利用HttpURLConnection對象從網路中擷取網頁資料:HttpURLConnection conn = (HttpURLConnection) url.openConnection();
3)設定連線逾時:conn.setConnectTimeout(6* 1000);
4)對響應碼進行判斷:if (conn.getResponseCode() != 200) throw new RuntimeException("請求url失敗");
5)得到網路返回的輸入資料流:InputStream is = conn.getInputStream();
6)String result = readData(is, "GBK");
conn.disconnect();
總結:
--我們必須要記得設定連線逾時,如果網路不好,Android系統在超過預設時間會收回資源中斷操作.
--返回的響應碼200,是成功.
--利用ByteArrayOutputStream類,將得到的輸入資料流寫入記憶體.
--在Android中對檔案流的操作和JAVA SE上面是一樣的.

2.從Internet擷取檔案
利用HttpURLConnection對象,我們可以從網路中擷取檔案資料.
1)建立URL對象,並將檔案路徑傳入:URL url = new URL("http://photocdn.sohu.com/20100125/Img269812337.jpg");
2)建立HttpURLConnection對象,從網路中擷取檔案資料:HttpURLConnection conn = (HttpURLConnection) url.openConnection();
3)設定連線逾時:conn.setConnectTimeout(6* 1000);
4)對響應碼進行判斷:if (conn.getResponseCode() != 200) throw new RuntimeException("請求url失敗");
5)得到網路返回的輸入資料流:InputStream is = conn.getInputStream();
6)將得到的檔案流寫出:outStream.write(buffer, 0, len);
總結:
--在對大檔案的操作時,要將檔案寫到SDCard上面,不要直接寫到手機記憶體上.
--操作大檔案是,要一遍從網路上讀,一遍要往SDCard上面寫,減少手機記憶體的使用.這點很重要,面試經常會被問到.
--對檔案流操作完,要記得及時關閉.

3.向Internet發送請求參數
1)將地址和參數存到byte數組中:byte[] data = params.toString().getBytes();
2)建立URL對象:URL realUrl = new URL(requestUrl);
3)通過HttpURLConnection對象,向網路地址發送請求:HttpURLConnection conn = (HttpURLConnection) realUrl.openConnection();
4)設定容許輸出:conn.setDoOutput(true);
5)設定不使用緩衝:conn.setUseCaches(false);
6)設定使用POST的方式發送:conn.setRequestMethod("POST");           
7)設定維持長串連:conn.setRequestProperty("Connection", "Keep-Alive");
8)設定檔案字元集:conn.setRequestProperty("Charset", "UTF-8");
9)設定檔案長度:conn.setRequestProperty("Content-Length", String.valueOf(data.length));
10)設定檔案類型:conn.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
11)以流的方式輸出.
總結:
--發送POST請求必須設定允許輸出
--不要使用緩衝,容易出現問題.
--在開始用HttpURLConnection對象的setRequestProperty()設定,就是產生HTML檔案頭.

4.向Internet發送xml資料
XML格式是通訊的標準語言,Android系統也可以通過發送XML檔案傳輸資料.
1)將產生的XML檔案寫入到byte數組中,並設定為UTF-8:byte[] xmlbyte = xml.toString().getBytes("UTF-8");
2)建立URL對象,並指定地址和參數:URL url = new URL("http://localhost:8080/itcast/contanctmanage.do?method=readxml");
3)獲得連結:HttpURLConnection conn = (HttpURLConnection) url.openConnection();
4)設定連線逾時:conn.setConnectTimeout(6* 1000);
5)設定允許輸出conn.setDoOutput(true);
6)設定不使用緩衝:conn.setUseCaches(false);
7)設定以POST方式傳輸:conn.setRequestMethod("POST");           
8)維持長串連:conn.setRequestProperty("Connection", "Keep-Alive");
9)設定字元集:conn.setRequestProperty("Charset", "UTF-8");
10)設定檔案的總長度:conn.setRequestProperty("Content-Length", String.valueOf(xmlbyte.length));
11)設定檔案類型:conn.setRequestProperty("Content-Type", "text/xml; charset=UTF-8");
12)以檔案流的方式發送xml資料:outStream.write(xmlbyte);
總結:
--我們使用的是用HTML的方式傳輸檔案,這個方式只能傳輸一般在5M一下的檔案.
--傳輸大檔案不適合用HTML的方式,傳輸大檔案我們要面向Socket編程.確保程式的穩定性.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.