從Java代碼中訪問 HTTPS 協議

來源:互聯網
上載者:User

標籤:

有個互連網上的網址:https://wtsz.jyzq.cn/ywcl.jsp?type=l&yybdm=1100&market=Z&userName=11009341&pwd=870221&ip=3.3.3.3&serverName=jyzq.cn,是HTTPS協議的,如何通過JAVA程式能夠調用該地址得到正確的返回資料。

當前這個地址是可以通過瀏覽器訪問的,需要在後台通過JAVA程式來訪問。

import java.io.IOException;import java.io.InputStreamReader;import java.net.URL;import javax.net.ssl.HttpsURLConnection;public class Test {public static void main(String[] args) throws IOException {URL reqURL = new URL("https://wtsz.jyzq.cn/ywcl.jsp?type=l&yybdm=1100&market=Z&userName=11009341&pwd=870221&ip=3.3.3.3&serverName=jyzq.cn"); // 建立URL對象HttpsURLConnection httpsConn = (HttpsURLConnection) reqURL.openConnection();/* * 下面這段代碼實現向Web頁面發送資料,實現與網頁的互動訪問 httpsConn.setDoOutput(true); * OutputStreamWriter out = new * OutputStreamWriter(huc.getOutputStream(), "8859_1"); out.write( "……" * ); out.flush(); out.close(); */// 取得該串連的輸入資料流,以讀取響應內容InputStreamReader insr = new InputStreamReader(httpsConn.getInputStream());// 讀取伺服器的響應內容並顯示int respInt = insr.read();while (respInt != -1) {System.out.print((char) respInt);respInt = insr.read();}}}

Output:

0##P8ZU08YAE77TFB9T4HRC93ZGBOZNSHDY


Groovy version:

import javax.net.ssl.HttpsURLConnection            URL reqURL = new URL(                "https://wtsz.jyzq.cn/ywcl.jsp?type=l&yybdm=1100&market=Z&userName=11009341&pwd=870221&ip=3.3.3.3&serverName=jyzq.cn"); // 建立URL對象        HttpsURLConnection httpsConn = (HttpsURLConnection) reqURL                .openConnection();        /*         * 下面這段代碼實現向Web頁面發送資料,實現與網頁的互動訪問 httpsConn.setDoOutput(true);         * OutputStreamWriter out = new         * OutputStreamWriter(huc.getOutputStream(), "8859_1"); out.write( "……"         * ); out.flush(); out.close();         */        // 取得該串連的輸入資料流,以讀取響應內容        InputStreamReader insr = new InputStreamReader(                httpsConn.getInputStream());        // 讀取伺服器的響應內容並顯示        int respInt = insr.read();        while (respInt != -1) {            System.out.print((char) respInt);            respInt = insr.read();        }//Output: //0##NQRCHIG6G7WJWMLKI5F1ETEGINNWT44X

注意:我用的 JAVA 8 64位版本。 據說以前在 JAVA 中, 訪問 HTTPS 協議是挺麻煩的。

java發https請求,認證配置

http://blog.csdn.net/today1858/article/details/5859876

Java安全通訊:HTTPS與SSL

http://www.cnblogs.com/devinzhang/archive/2012/02/28/2371631.html



從Java代碼中訪問 HTTPS 協議

相關文章

聯繫我們

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