Android通過https協議與伺服器端進行通訊

來源:互聯網
上載者:User

Https與Http類似,只不過Https一般是通過post請求伺服器,但是Https與http不同的是Https與伺服器會話是處於串連狀態。http則發送請求後串連就會斷開。
發送post請求代碼:
String query = r4 + "&pass=" + r3; //請求參數
                        byte[] entitydata = query.getBytes();//得到實體資料
                        HttpsURLConnection urlCon = (new URL(ticketurl)).openConnection();
                        urlCon.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset=UTF-8");
                        urlCon.setRequestProperty("Content-Length", String.valueOf(entitydata.length));
                        ((HttpsURLConnection) urlCon).setRequestMethod("POST");
                        urlCon.setDoOutput(true);
                        urlCon.setDoInput(true);
                        urlCon.connect();

                        //把封裝好的實體資料發送到輸出資料流
                        OutputStream outStream = urlCon.getOutputStream();
                        outStream.write(entitydata);
                        outStream.flush();
                        outStream.close();

                        //伺服器返回輸入資料流並讀寫
                        BufferedReader in = new BufferedReader(new InputStreamReader(urlCon.getInputStream()));
                        String line;

                        while ((line = in.readLine()) != null) {
                                return line;
                        }
                        in.close();
另外使用HttpsURLConnection時需要實現HostnameVerifier 和 X509TrustManager,這兩個實現是必須的,要不會報安全驗證異常。然後初始化X509TrustManager中的SSLContext,為javax.net.ssl.HttpsURLConnection設定預設的SocketFactory和HostnameVerifier。代碼如下:
        private myX509TrustManager xtm = new myX509TrustManager();
        private myHostnameVerifier hnv = new myHostnameVerifier();
        
        public HttpsURLConnectionTest() {
                
                //初始化X509TrustManager中的SSLContext
                SSLContext sslContext = null;

                try {
                        sslContext = SSLContext.getInstance("TLS");
                        X509TrustManager[] xtmArray = new X509TrustManager[] { xtm };
                        sslContext.init(null, xtmArray, new java.security.SecureRandom());
                } catch (GeneralSecurityException gse) {
                        
                }

                //為javax.net.ssl.HttpsURLConnection設定預設的SocketFactory和HostnameVerifier
                if (sslContext != null) {
                        HttpsURLConnection.setDefaultSSLSocketFactory(sslContext.getSocketFactory());
                }

                HttpsURLConnection.setDefaultHostnameVerifier(hnv);
這樣就不會報錯了。

相關文章

聯繫我們

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