• java实用代码-----HttpsUtil


    package com.acker.android;
    
    import android.content.Context;
    import android.util.Log;
    
    import org.apache.http.HttpEntity;
    import org.apache.http.HttpResponse;
    import org.apache.http.client.HttpClient;
    import org.apache.http.client.methods.HttpGet;
    import org.apache.http.conn.scheme.Scheme;
    import org.apache.http.conn.ssl.SSLSocketFactory;
    import org.apache.http.impl.client.DefaultHttpClient;
    import org.apache.http.util.EntityUtils;
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import java.security.KeyStore;
    import java.security.cert.CertificateFactory;
    
    import javax.net.ssl.HttpsURLConnection;
    import javax.net.ssl.SSLContext;
    import javax.net.ssl.TrustManagerFactory;
    
    import java.security.cert.Certificate;
    import java.security.cert.X509Certificate;
    
    /**
    
     */
    
    public class HttpsUtil {
    
        /**
         * HttpURLConnection实现,受信任的CA
         */
        public static void httpsUrl1() {
            HttpURLConnection urlConnection = null;
            try {
                long time = System.currentTimeMillis();
                URL url = new URL("https://www.baidu.com");
                urlConnection = (HttpURLConnection) url.openConnection();
                InputStream in = urlConnection.getInputStream();
                time = System.currentTimeMillis() - time;
                Log.i("https", "耗时:" + time + " ms");
                Log.i("https", transfer(in));
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                if (urlConnection != null) {
                    urlConnection.disconnect();
                }
            }
        }
    
        /**
         * HttpClient实现,受信任的CA
         */
        public static void httpsUrl2() {
            HttpClient httpClient = new DefaultHttpClient();
            HttpGet httpGet = new HttpGet("https://www.baidu.com/");
            try {
                HttpResponse httpResponse = httpClient.execute(httpGet);
                if (httpResponse.getStatusLine().getStatusCode() == 200) {
                    HttpEntity entity = httpResponse.getEntity();
                    String response = EntityUtils.toString(entity, "utf-8");
                    Log.i("https", response);
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    
        /**
         * HttpURLConnection实现,未知的CA
         *
         * @param context
         */
        public static void httpsUrl3(Context context) {
            InputStream caInput = null;
            Certificate ca = null;
            try {
                // Load CAs from an InputStream
                // (could be from a resource or ByteArrayInputStream or ...)
                CertificateFactory cf = CertificateFactory.getInstance("X.509");
                caInput = context.getAssets().open("srca.cer");
                ca = cf.generateCertificate(caInput);
                Log.i("https", "ca=" + ((X509Certificate) ca).getSubjectDN());
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                try {
                    caInput.close();
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            try {
                // Create a KeyStore containing our trusted CAs
                String keyStoreType = KeyStore.getDefaultType();
                KeyStore keyStore = KeyStore.getInstance(keyStoreType);
                keyStore.load(null, null);
                keyStore.setCertificateEntry("ca", ca);
    
                // Create a TrustManager that trusts the CAs in our KeyStore
                String tmfAlgorithm = TrustManagerFactory.getDefaultAlgorithm();
                TrustManagerFactory tmf = TrustManagerFactory.getInstance(tmfAlgorithm);
                tmf.init(keyStore);
    
                // Create an SSLContext that uses our TrustManager
                SSLContext sslContext = SSLContext.getInstance("TLS");
                sslContext.init(null, tmf.getTrustManagers(), null);
    
                // Tell the URLConnection to use a SocketFactory from our SSLContext
                URL url = new URL("https://kyfw.12306.cn/otn/");
                HttpsURLConnection urlConnection = (HttpsURLConnection) url.openConnection();
                urlConnection.setSSLSocketFactory(sslContext.getSocketFactory());
                InputStream in = urlConnection.getInputStream();
                Log.i("https", transfer(in));
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    
        /**
         * HttpClient实现,未知的CA
         *
         * @param context
         */
        public static void httpsUrl4(Context context) {
            InputStream caInput = null;
            Certificate ca = null;
            try {
                // Load CAs from an InputStream
                // (could be from a resource or ByteArrayInputStream or ...)
                CertificateFactory cf = CertificateFactory.getInstance("X.509");
                caInput = context.getAssets().open("srca.cer");
                ca = cf.generateCertificate(caInput);
                Log.i("https", "ca=" + ((X509Certificate) ca).getSubjectDN());
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                try {
                    caInput.close();
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            try {
                // Create a KeyStore containing our trusted CAs
                String keyStoreType = KeyStore.getDefaultType();
                KeyStore keyStore = KeyStore.getInstance(keyStoreType);
                keyStore.load(null, null);
                keyStore.setCertificateEntry("ca", ca);
                SSLSocketFactory ssl = new SSLSocketFactory(keyStore);
                ssl.setHostnameVerifier(ssl.getHostnameVerifier());
                Scheme scheme = new Scheme("https", ssl, 443);
                HttpClient httpclient = new DefaultHttpClient();
                httpclient.getConnectionManager().getSchemeRegistry().register(scheme);
                HttpGet httpGet = new HttpGet("https://kyfw.12306.cn/otn/");
                HttpResponse httpResponse = httpclient.execute(httpGet);
                if (httpResponse.getStatusLine().getStatusCode() == 200) {
                    HttpEntity entity = httpResponse.getEntity();
                    String response = EntityUtils.toString(entity, "utf-8");
                    Log.i("https", response);
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    
        private static String transfer(InputStream inputStream) {
            ByteArrayOutputStream result = new ByteArrayOutputStream();
            byte[] buffer = new byte[1024];
            int length;
            try {
                while ((length = inputStream.read(buffer)) != -1) {
                    result.write(buffer, 0, length);
                }
                return result.toString("UTF-8");
            } catch (IOException e) {
                e.printStackTrace();
                return "";
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
  • 相关阅读:
    【torch】torch.nn.functional 中的unfold和fold直观理解
    nodejs+vue留学生交流互动论坛网站Elementui前端项目推荐
    sql调优之:字符集不一致导致的索引失效案例
    国产开发板上打造开源ThingsBoard工业网关--基于米尔芯驰MYD-JD9X开发板
    Nginx 学习笔记
    Nginx(五)
    概率论 第三章习题课
    C语言实现双人贪吃蛇项目(基于控制台界面)
    Transformers - Roberta(huggingface)
    Redis源码解析-基本数据结构
  • 原文地址:https://blog.csdn.net/liuhao9999/article/details/125482868