|
@@ -1,6 +1,7 @@
|
|
|
package com.hywa.banktest.bankframework.utils.httpclient;
|
|
|
|
|
|
-import org.apache.log4j.Logger;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
|
|
|
import javax.net.ssl.*;
|
|
|
import java.io.*;
|
|
@@ -18,21 +19,21 @@ import java.util.Map.Entry;
|
|
|
|
|
|
|
|
|
/**
|
|
|
- *
|
|
|
+ *
|
|
|
* 版权所有:2016-贵州精英天成科技股份有限公司
|
|
|
- * 项目名称:plamsa-common
|
|
|
+ * 项目名称:plamsa-common
|
|
|
*
|
|
|
* 类描述:
|
|
|
- * 类名称:com.elite.common.utils.httpclient.SimpleHttpUtils
|
|
|
- * 创建人: xiezt
|
|
|
- * 创建时间:2016年5月6日 下午4:25:28
|
|
|
+ * 类名称:com.elite.common.utils.httpclient.SimpleHttpUtils
|
|
|
+ * 创建人: xiezt
|
|
|
+ * 创建时间:2016年5月6日 下午4:25:28
|
|
|
* 修改人:
|
|
|
- * 修改时间:2016年5月6日 下午4:25:28
|
|
|
- * 修改备注:
|
|
|
+ * 修改时间:2016年5月6日 下午4:25:28
|
|
|
+ * 修改备注:
|
|
|
* @version 1.0
|
|
|
*/
|
|
|
public class SimpleHttpUtils {
|
|
|
- private static final Logger logger = Logger.getLogger(SimpleHttpUtils.class);
|
|
|
+ private static final Logger logger = LoggerFactory.getLogger(SimpleHttpUtils.class);
|
|
|
|
|
|
/**
|
|
|
* 默认字符编码
|
|
@@ -42,14 +43,14 @@ public class SimpleHttpUtils {
|
|
|
public static final String HTTP_METHOD_POST = "POST";
|
|
|
|
|
|
public static final String HTTP_METHOD_GET = "GET";
|
|
|
-
|
|
|
+
|
|
|
public static final String HTTP_ERROR_MESSAGE = "http_error_message";
|
|
|
|
|
|
/**
|
|
|
* 默认超时设置(20秒)
|
|
|
*/
|
|
|
public static final int DEFAULT_READ_TIMEOUT = 20000;
|
|
|
-
|
|
|
+
|
|
|
public static final int DEFAULT_CONNECT_TIMEOUT = 10000;
|
|
|
|
|
|
|
|
@@ -59,9 +60,9 @@ public class SimpleHttpUtils {
|
|
|
|
|
|
//最多只读取5000字节
|
|
|
public static final int MAX_FETCHSIZE = 5000;
|
|
|
-
|
|
|
+
|
|
|
private static TrustManager[] trustAnyManagers = new TrustManager[]{new TrustAnyTrustManager()};
|
|
|
-
|
|
|
+
|
|
|
static {
|
|
|
System.setProperty("sun.net.inetaddr.ttl", "3600");
|
|
|
}
|
|
@@ -76,7 +77,7 @@ public class SimpleHttpUtils {
|
|
|
|
|
|
/**
|
|
|
* 以建立HttpURLConnection方式发送请求
|
|
|
- *
|
|
|
+ *
|
|
|
* 请求地址
|
|
|
* @param params
|
|
|
* 请求参数
|
|
@@ -103,7 +104,7 @@ public class SimpleHttpUtils {
|
|
|
return result.getContent();
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
*
|
|
|
* @return
|
|
@@ -122,7 +123,7 @@ public class SimpleHttpUtils {
|
|
|
boolean hostnameVerify = httpParam.isHostnameVerify();
|
|
|
TrustKeyStore trustKeyStore = httpParam.getTrustKeyStore();
|
|
|
ClientKeyStore clientKeyStore = httpParam.getClientKeyStore();
|
|
|
-
|
|
|
+
|
|
|
if (url == null || url.trim().length() == 0) {
|
|
|
throw new IllegalArgumentException("invalid url : " + url);
|
|
|
}
|
|
@@ -132,7 +133,7 @@ public class SimpleHttpUtils {
|
|
|
Charset.forName(charSet);
|
|
|
HttpURLConnection urlConn = null;
|
|
|
URL destURL = null;
|
|
|
-
|
|
|
+
|
|
|
String baseUrl = url.trim();
|
|
|
if (!baseUrl.toLowerCase().startsWith(HTTPS_PREFIX) && !baseUrl.toLowerCase().startsWith(HTTP_PREFIX)) {
|
|
|
baseUrl = HTTP_PREFIX + baseUrl;
|
|
@@ -148,14 +149,14 @@ public class SimpleHttpUtils {
|
|
|
throw new IllegalArgumentException("invalid http method : "
|
|
|
+ method);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
int index = baseUrl.indexOf("?");
|
|
|
if (index>0){
|
|
|
baseUrl = urlEncode(baseUrl, charSet);
|
|
|
}else if(index==0){
|
|
|
throw new IllegalArgumentException("invalid url : " + url);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
String queryString = mapToQueryString(parameters, charSet);
|
|
|
String targetUrl = "";
|
|
|
if (method.equals(HTTP_METHOD_POST)) {
|
|
@@ -170,10 +171,10 @@ public class SimpleHttpUtils {
|
|
|
try {
|
|
|
destURL = new URL(targetUrl);
|
|
|
urlConn = (HttpURLConnection)destURL.openConnection();
|
|
|
-
|
|
|
+
|
|
|
setSSLSocketFactory(urlConn, sslVerify, hostnameVerify, trustKeyStore, clientKeyStore);
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
boolean hasContentType = false;
|
|
|
boolean hasUserAgent = false;
|
|
|
for(String key : headers.keySet()){
|
|
@@ -190,7 +191,7 @@ public class SimpleHttpUtils {
|
|
|
if(!hasUserAgent){
|
|
|
headers.put("user-agent", "PlatSystem");
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if(headers!=null && !headers.isEmpty()){
|
|
|
for(Entry<String, Object> entry : headers.entrySet()){
|
|
|
String key = entry.getKey();
|
|
@@ -208,9 +209,9 @@ public class SimpleHttpUtils {
|
|
|
urlConn.setRequestMethod(method);
|
|
|
urlConn.setConnectTimeout(connectTimeout);
|
|
|
urlConn.setReadTimeout(readTimeout);
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
if (method.equals(HTTP_METHOD_POST)) {
|
|
|
String postData = queryString.length()==0?httpParam.getPostData():queryString;
|
|
|
if(postData!=null && postData.trim().length()>0){
|
|
@@ -225,15 +226,15 @@ public class SimpleHttpUtils {
|
|
|
int responseCode = urlConn.getResponseCode();
|
|
|
Map<String, List<String>> responseHeaders = urlConn.getHeaderFields();
|
|
|
String contentType = urlConn.getContentType();
|
|
|
-
|
|
|
+
|
|
|
SimpleHttpResult result = new SimpleHttpResult(responseCode);
|
|
|
result.setHeaders(responseHeaders);
|
|
|
result.setContentType(contentType);
|
|
|
-
|
|
|
+
|
|
|
if(responseCode!=200 && ignoreContentIfUnsuccess){
|
|
|
return result;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
InputStream is = urlConn.getInputStream();
|
|
|
byte[] temp = new byte[1024];
|
|
|
// ByteBuffer buffer = ByteBuffer.allocate(maxResultSize);
|
|
@@ -262,7 +263,7 @@ public class SimpleHttpUtils {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public static String urlEncode(String url, String charSet){
|
|
|
if(url==null || url.trim().length()==0){
|
|
|
return url;
|
|
@@ -299,7 +300,7 @@ public class SimpleHttpUtils {
|
|
|
}
|
|
|
return serviceUrl + "?" + newQueryString;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public static String mapToQueryString(Map parameters, String charSet) {
|
|
|
String queryString = "";
|
|
|
if (parameters!=null && !parameters.isEmpty()) {
|
|
@@ -352,7 +353,7 @@ public class SimpleHttpUtils {
|
|
|
}
|
|
|
return map;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
private static void setSSLSocketFactory(HttpURLConnection urlConn, boolean sslVerify, boolean hostnameVerify, TrustKeyStore trustCertFactory, ClientKeyStore clientKeyFactory){
|
|
|
try{
|
|
|
SSLSocketFactory socketFactory = null;
|
|
@@ -373,7 +374,7 @@ public class SimpleHttpUtils {
|
|
|
sc.init(keyManagers, trustManagers, new java.security.SecureRandom());
|
|
|
socketFactory = sc.getSocketFactory();
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if(urlConn instanceof HttpsURLConnection){
|
|
|
HttpsURLConnection httpsUrlCon = (HttpsURLConnection)urlConn;
|
|
|
if(socketFactory!=null){
|
|
@@ -398,7 +399,7 @@ public class SimpleHttpUtils {
|
|
|
logger.error(e.getMessage(), e);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
private static List<String> makeStringList(Object value){
|
|
|
if (value == null) {
|
|
|
value = "";
|
|
@@ -411,7 +412,7 @@ public class SimpleHttpUtils {
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (value instanceof Iterator) {
|
|
|
Iterator it = (Iterator)value;
|
|
|
while(it.hasNext()){
|
|
@@ -420,7 +421,7 @@ public class SimpleHttpUtils {
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if(value instanceof Collection){
|
|
|
for(Object obj : (Collection)value){
|
|
|
result.add(obj!=null?obj.toString():"");
|
|
@@ -439,32 +440,32 @@ public class SimpleHttpUtils {
|
|
|
result.add(value.toString());
|
|
|
return result;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
private static class TrustAnyTrustManager implements X509TrustManager {
|
|
|
-
|
|
|
+
|
|
|
public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public X509Certificate[] getAcceptedIssuers() {
|
|
|
return new X509Certificate[]{};
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
private static class TrustAnyHostnameVerifier implements HostnameVerifier {
|
|
|
public boolean verify(String hostname, SSLSession session) {
|
|
|
return true;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
private static class TrustAnyHostnameVerifierOld implements com.sun.net.ssl.HostnameVerifier{
|
|
|
public boolean verify(String arg0, String arg1) {
|
|
|
return true;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public static ClientKeyStore loadClientKeyStore(String keyStorePath, String keyStorePass, String privateKeyPass){
|
|
|
try{
|
|
|
return loadClientKeyStore(new FileInputStream(keyStorePath), keyStorePass, privateKeyPass);
|
|
@@ -473,7 +474,7 @@ public class SimpleHttpUtils {
|
|
|
return null;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public static ClientKeyStore loadClientKeyStore(InputStream keyStoreStream, String keyStorePass, String privateKeyPass){
|
|
|
try{
|
|
|
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
|
|
@@ -486,7 +487,7 @@ public class SimpleHttpUtils {
|
|
|
return null;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public static TrustKeyStore loadTrustKeyStore(String keyStorePath, String keyStorePass){
|
|
|
try{
|
|
|
return loadTrustKeyStore(new FileInputStream(keyStorePath), keyStorePass);
|
|
@@ -495,7 +496,7 @@ public class SimpleHttpUtils {
|
|
|
return null;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public static TrustKeyStore loadTrustKeyStore(InputStream keyStoreStream, String keyStorePass){
|
|
|
try{
|
|
|
TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509");
|
|
@@ -519,13 +520,13 @@ public class SimpleHttpUtils {
|
|
|
return 0;
|
|
|
}
|
|
|
public static void test2() {
|
|
|
-
|
|
|
+
|
|
|
SimpleHttpParam http = new SimpleHttpParam("https://www.gdgwpay.com/");
|
|
|
http.setConnectTimeout(5000);
|
|
|
http.setMethod("POST");
|
|
|
SimpleHttpResult request=SimpleHttpUtils.httpRequest(http);
|
|
|
String html = request.getContent();
|
|
|
System.out.println(html);
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
-}
|
|
|
+}
|