介紹
沽源ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!早些時候,Android 上發(fā)送 HTTP 請求一般有 2 種方式:HttpURLConnection 和 HttpClient。不過由于 HttpClient 存在 API 數(shù)量過多、擴(kuò)展困難等缺點,Android 團(tuán)隊越來越不建議我們使用這種方式。在 Android 6.0 系統(tǒng)中,HttpClient 的功能被完全移除了。因此,在這里我們只簡單介紹HttpURLConnection 的使用。
代碼 (核心部分,目前只演示 GET 請求):
1. Manifest.xml 中添加網(wǎng)絡(luò)權(quán)限:
2. 在子線程中發(fā)起網(wǎng)絡(luò)請求:
new Thread(new Runnable() { @Override public void run() { doRequest(); } }).start(); //發(fā)起網(wǎng)絡(luò)請求 private void doRequest() { HttpURLConnection connection = null; BufferedReader reader = null; try { //1.獲取 HttpURLConnection 實例.注意要用 https 才能獲取到結(jié)果! URL url = new URL("https://www.baidu.com"); connection = (HttpURLConnection) url.openConnection(); //2.設(shè)置 HTTP 請求方式 connection.setRequestMethod("GET"); //3.設(shè)置連接超時和讀取超時的毫秒數(shù) connection.setConnectTimeout(5000); connection.setReadTimeout(5000); //4.獲取服務(wù)器返回的輸入流 InputStream inputStream = connection.getInputStream(); //5.對獲取的輸入流進(jìn)行讀取 reader = new BufferedReader(new InputStreamReader(inputStream)); final StringBuilder response = new StringBuilder(); String line; while ((line = reader.readLine()) != null) { response.append(line); } //然后處理讀取到的信息 response。返回的結(jié)果是 HTML 代碼,字符非常多。 runOnUiThread(new Runnable() { @Override public void run() { tvResponse.setText(response.toString()); } }); } catch (MalformedURLException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (reader != null) { try { reader.close(); } catch (IOException e) { e.printStackTrace(); } } if (connection != null) { connection.disconnect(); } } }