86183
2022-09-09 0d999e33085c0a25c5525242748f6aa62a401159
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package com.dsh.app.util.pay.wechat;
 
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import sun.net.www.protocol.https.Handler;
 
import javax.net.ssl.*;
import java.io.*;
import java.net.URL;
import java.security.SecureRandom;
import java.security.cert.CertificateException;
 
public class HttpsConnectUtil {
    /**
     * @author Administrator
     *
     */
        private static final Logger log = LoggerFactory.getLogger(HttpsConnectUtil.class);
 
        private static final String METHOD_GET = "GET";
        private static final String METHOD_POST = "POST";
        private static final String DEFAULT_CHARSET = "utf-8";
 
        public static String doPost(String url, String params, String charset, int connectTimeout, int readTimeout,boolean getLocation) throws Exception {
            String ctype = "text/html;charset=" + charset;
            byte[] content = {};
            if(params != null){
                content = params.getBytes(charset);
            }
            return doPost(url, ctype, content, connectTimeout, readTimeout,getLocation);
        }
        public static String doPost(String url, String ctype, byte[] content,int connectTimeout,int readTimeout,boolean getLocation) throws Exception {
            HttpsURLConnection conn = null;
            OutputStream out = null;
            String rsp = null;
            try {
                try{
                    SSLContext ctx = SSLContext.getInstance("SSL");
                    ctx.init(new KeyManager[0], new TrustManager[] {new DefaultTrustManager()}, new SecureRandom());
                    SSLContext.setDefault(ctx);
 
                    conn = getConnection(new URL(null,url,new Handler()), METHOD_POST, ctype);
                    conn.setRequestMethod("POST");
                    conn.setHostnameVerifier(new HostnameVerifier() {
                        @Override
                        public boolean verify(String hostname, SSLSession session) {
                            return true;
                        }
                    });
                    conn.setConnectTimeout(connectTimeout);
                    conn.setReadTimeout(readTimeout);
                }catch(Exception e){
                    log.error("doPost GET_CONNECTOIN_ERROR, URL = " + url, e);
                    throw e;
                }
                try{
                    out = conn.getOutputStream();
                    out.write(content);
                    rsp = getResponseAsString(conn);
                    if (rsp!=null) {
                        if (getLocation) {
                            String location = conn.getHeaderField("Location");
                            if (location!=null) {
                                return location.substring(location.lastIndexOf("/")+1, location.length());
                            }
                        }
                    }
                }catch(IOException e){
                    log.error("doPost REQUEST_RESPONSE_ERROR, URL = " + url, e);
                    throw e;
                }
 
            }finally {
                if (out != null) {
                    out.close();
                }
                if (conn != null) {
                    conn.disconnect();
                }
            }
 
            return rsp;
        }
 
        public static String doGet(String url, String ctype, int connectTimeout,int readTimeout) throws Exception {
            HttpsURLConnection conn = null;
            String rsp = null;
            try {
                try{
                    SSLContext ctx = SSLContext.getInstance("SSL");
                    ctx.init(new KeyManager[0], new TrustManager[] {new DefaultTrustManager()}, new SecureRandom());
                    SSLContext.setDefault(ctx);
 
                    conn = getConnection(new URL(null,url,new Handler()), METHOD_GET, ctype);
                    conn.setHostnameVerifier(new HostnameVerifier() {
                        @Override
                        public boolean verify(String hostname, SSLSession session) {
                            return true;
                        }
                    });
                    conn.setConnectTimeout(connectTimeout);
                    conn.setReadTimeout(readTimeout);
 
                }catch(Exception e){
                    log.error("doGet GET_CONNECTOIN_ERROR, URL = " + url, e);
                    throw e;
                }
                try{
                    rsp = getResponseAsString(conn);
                }catch(IOException e){
                    log.error("doGet REQUEST_RESPONSE_ERROR, URL = " + url, e);
                    throw e;
                }
 
            }finally {
                if (conn != null) {
                    conn.disconnect();
                }
            }
 
            return rsp;
        }
 
        private static class DefaultTrustManager implements X509TrustManager {
 
            /* (non-Javadoc)
             * @see javax.net.ssl.X509TrustManager#checkClientTrusted(java.security.cert.X509Certificate[], java.lang.String)
             */
            @Override
            public void checkClientTrusted(
                    java.security.cert.X509Certificate[] arg0, String arg1)
                    throws CertificateException {
                // TODO Auto-generated method stub
 
            }
 
            /* (non-Javadoc)
             * @see javax.net.ssl.X509TrustManager#checkServerTrusted(java.security.cert.X509Certificate[], java.lang.String)
             */
            @Override
            public void checkServerTrusted(
                    java.security.cert.X509Certificate[] arg0, String arg1)
                    throws CertificateException {
                // TODO Auto-generated method stub
 
            }
 
            /* (non-Javadoc)
             * @see javax.net.ssl.X509TrustManager#getAcceptedIssuers()
             */
            @Override
            public java.security.cert.X509Certificate[] getAcceptedIssuers() {
                // TODO Auto-generated method stub
                return null;
            }
 
 
        }
 
        private static HttpsURLConnection getConnection(URL JNurl, String method, String ctype)
                throws IOException {
            HttpsURLConnection conn = (HttpsURLConnection) JNurl.openConnection();
            conn.setRequestMethod(method);
            conn.setDoInput(true);
            conn.setDoOutput(true);
            //conn.setRequestProperty("Accept", "text/plain");
            //conn.setRequestProperty("User-Agent", "stargate");
            //conn.setRequestProperty("Content-Type", ctype);
            return conn;
        }
 
        protected static String getResponseAsString(HttpsURLConnection conn) throws IOException {
            String charset = getResponseCharset(conn.getContentType());
            InputStream es = conn.getErrorStream();
            if (es == null) {
                return getStreamAsString(conn.getInputStream(), charset);
            } else {
                String msg = getStreamAsString(es, charset);
                if (StringUtils.isEmpty(msg)) {
                    throw new IOException(conn.getResponseCode() + ":" + conn.getResponseMessage());
                } else {
                    throw new IOException(msg);
                }
            }
        }
 
        private static String getStreamAsString(InputStream stream, String charset) throws IOException {
            try {
                BufferedReader reader = new BufferedReader(new InputStreamReader(stream, charset));
                StringWriter writer = new StringWriter();
 
                char[] chars = new char[256];
                int count = 0;
                while ((count = reader.read(chars)) > 0) {
                    writer.write(chars, 0, count);
                }
 
                return writer.toString();
            } finally {
                if (stream != null) {
                    stream.close();
                }
            }
        }
 
        private static String getResponseCharset(String ctype) {
            String charset = DEFAULT_CHARSET;
 
            if (!StringUtils.isEmpty(ctype)) {
                String[] params = ctype.split(";");
                for (String param : params) {
                    param = param.trim();
                    if (param.startsWith("charset")) {
                        String[] pair = param.split("=", 2);
                        if (pair.length == 2) {
                            if (!StringUtils.isEmpty(pair[1])) {
                                charset = pair[1].trim();
                            }
                        }
                        break;
                    }
                }
            }
 
            return charset;
        }
 
}