|
|
|
|
@ -0,0 +1,334 @@
|
|
|
|
|
package cn.iocoder.yudao.module.iot.framework.util;
|
|
|
|
|
|
|
|
|
|
import org.apache.http.Header;
|
|
|
|
|
import org.apache.http.StatusLine;
|
|
|
|
|
import org.apache.http.client.entity.UrlEncodedFormEntity;
|
|
|
|
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
|
|
|
|
import org.apache.http.client.methods.HttpGet;
|
|
|
|
|
import org.apache.http.client.methods.HttpPost;
|
|
|
|
|
import org.apache.http.conn.ssl.NoopHostnameVerifier;
|
|
|
|
|
import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
|
|
|
|
|
import org.apache.http.impl.client.CloseableHttpClient;
|
|
|
|
|
import org.apache.http.impl.client.HttpClients;
|
|
|
|
|
import org.apache.http.message.BasicNameValuePair;
|
|
|
|
|
import org.apache.http.ssl.SSLContextBuilder;
|
|
|
|
|
import org.apache.http.ssl.TrustStrategy;
|
|
|
|
|
import org.apache.http.util.EntityUtils;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
|
|
import javax.net.ssl.*;
|
|
|
|
|
import java.io.*;
|
|
|
|
|
import java.net.ConnectException;
|
|
|
|
|
import java.net.SocketTimeoutException;
|
|
|
|
|
import java.net.URL;
|
|
|
|
|
import java.net.URLConnection;
|
|
|
|
|
import java.security.KeyManagementException;
|
|
|
|
|
import java.security.KeyStoreException;
|
|
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
|
|
import java.security.cert.CertificateException;
|
|
|
|
|
import java.security.cert.X509Certificate;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 通用http发送方法
|
|
|
|
|
*
|
|
|
|
|
* @author ruoyi
|
|
|
|
|
*/
|
|
|
|
|
public class HttpUtils {
|
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(HttpUtils.class);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 向指定 URL 发送GET方法的请求
|
|
|
|
|
*
|
|
|
|
|
* @param url 发送请求的 URL
|
|
|
|
|
* @param param 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
|
|
|
|
|
* @return 所代表远程资源的响应结果
|
|
|
|
|
*/
|
|
|
|
|
public static String sendGet(String url, String param) {
|
|
|
|
|
return sendGet(url, param, "UTF-8");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 向指定 URL 发送GET方法的请求
|
|
|
|
|
*
|
|
|
|
|
* @param url 发送请求的 URL
|
|
|
|
|
* @param param 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
|
|
|
|
|
* @param contentType 编码类型
|
|
|
|
|
* @return 所代表远程资源的响应结果
|
|
|
|
|
*/
|
|
|
|
|
public static String sendGet(String url, String param, String contentType) {
|
|
|
|
|
StringBuilder result = new StringBuilder();
|
|
|
|
|
BufferedReader in = null;
|
|
|
|
|
try {
|
|
|
|
|
String urlNameString = url + "?" + param;
|
|
|
|
|
log.info("sendGet - {}", urlNameString);
|
|
|
|
|
URL realUrl = new URL(urlNameString);
|
|
|
|
|
URLConnection connection = realUrl.openConnection();
|
|
|
|
|
connection.setRequestProperty("accept", "*/*");
|
|
|
|
|
connection.setRequestProperty("connection", "Keep-Alive");
|
|
|
|
|
connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
|
|
|
|
|
connection.connect();
|
|
|
|
|
in = new BufferedReader(new InputStreamReader(connection.getInputStream(), contentType));
|
|
|
|
|
String line;
|
|
|
|
|
while ((line = in.readLine()) != null) {
|
|
|
|
|
result.append(line);
|
|
|
|
|
}
|
|
|
|
|
log.info("recv - {}", result);
|
|
|
|
|
} catch (ConnectException e) {
|
|
|
|
|
log.error("调用HttpUtils.sendGet ConnectException, url=" + url + ",param=" + param, e);
|
|
|
|
|
} catch (SocketTimeoutException e) {
|
|
|
|
|
log.error("调用HttpUtils.sendGet SocketTimeoutException, url=" + url + ",param=" + param, e);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
log.error("调用HttpUtils.sendGet IOException, url=" + url + ",param=" + param, e);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("调用HttpsUtil.sendGet Exception, url=" + url + ",param=" + param, e);
|
|
|
|
|
} finally {
|
|
|
|
|
try {
|
|
|
|
|
if (in != null) {
|
|
|
|
|
in.close();
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception ex) {
|
|
|
|
|
log.error("调用in.close Exception, url=" + url + ",param=" + param, ex);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 向指定 URL 发送POST方法的请求
|
|
|
|
|
*
|
|
|
|
|
* @param url 发送请求的 URL
|
|
|
|
|
* @param param 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
|
|
|
|
|
* @return 所代表远程资源的响应结果
|
|
|
|
|
*/
|
|
|
|
|
public static String sendPost(String url, String param) {
|
|
|
|
|
PrintWriter out = null;
|
|
|
|
|
BufferedReader in = null;
|
|
|
|
|
StringBuilder result = new StringBuilder();
|
|
|
|
|
try {
|
|
|
|
|
String urlNameString = url;
|
|
|
|
|
log.info("sendPost - {}", urlNameString);
|
|
|
|
|
URL realUrl = new URL(urlNameString);
|
|
|
|
|
URLConnection conn = realUrl.openConnection();
|
|
|
|
|
conn.setRequestProperty("accept", "*/*");
|
|
|
|
|
conn.setRequestProperty("connection", "Keep-Alive");
|
|
|
|
|
conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
|
|
|
|
|
conn.setRequestProperty("Accept-Charset", "utf-8");
|
|
|
|
|
conn.setRequestProperty("contentType", "utf-8");
|
|
|
|
|
conn.setDoOutput(true);
|
|
|
|
|
conn.setDoInput(true);
|
|
|
|
|
out = new PrintWriter(conn.getOutputStream());
|
|
|
|
|
out.print(param);
|
|
|
|
|
out.flush();
|
|
|
|
|
in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "utf-8"));
|
|
|
|
|
String line;
|
|
|
|
|
while ((line = in.readLine()) != null) {
|
|
|
|
|
result.append(line);
|
|
|
|
|
}
|
|
|
|
|
log.info("recv - {}", result);
|
|
|
|
|
} catch (ConnectException e) {
|
|
|
|
|
log.error("调用HttpUtils.sendPost ConnectException, url=" + url + ",param=" + param, e);
|
|
|
|
|
} catch (SocketTimeoutException e) {
|
|
|
|
|
log.error("调用HttpUtils.sendPost SocketTimeoutException, url=" + url + ",param=" + param, e);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
log.error("调用HttpUtils.sendPost IOException, url=" + url + ",param=" + param, e);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("调用HttpsUtil.sendPost Exception, url=" + url + ",param=" + param, e);
|
|
|
|
|
} finally {
|
|
|
|
|
try {
|
|
|
|
|
if (out != null) {
|
|
|
|
|
out.close();
|
|
|
|
|
}
|
|
|
|
|
if (in != null) {
|
|
|
|
|
in.close();
|
|
|
|
|
}
|
|
|
|
|
} catch (IOException ex) {
|
|
|
|
|
log.error("调用in.close Exception, url=" + url + ",param=" + param, ex);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static String sendSSLPost(String url, String param) {
|
|
|
|
|
StringBuilder result = new StringBuilder();
|
|
|
|
|
String urlNameString = url + "?" + param;
|
|
|
|
|
try {
|
|
|
|
|
log.info("sendSSLPost - {}", urlNameString);
|
|
|
|
|
SSLContext sc = SSLContext.getInstance("SSL");
|
|
|
|
|
sc.init(null, new TrustManager[]{new TrustAnyTrustManager()}, new java.security.SecureRandom());
|
|
|
|
|
URL console = new URL(urlNameString);
|
|
|
|
|
HttpsURLConnection conn = (HttpsURLConnection) console.openConnection();
|
|
|
|
|
conn.setRequestProperty("accept", "*/*");
|
|
|
|
|
conn.setRequestProperty("connection", "Keep-Alive");
|
|
|
|
|
conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
|
|
|
|
|
conn.setRequestProperty("Accept-Charset", "utf-8");
|
|
|
|
|
conn.setRequestProperty("contentType", "utf-8");
|
|
|
|
|
conn.setDoOutput(true);
|
|
|
|
|
conn.setDoInput(true);
|
|
|
|
|
|
|
|
|
|
conn.setSSLSocketFactory(sc.getSocketFactory());
|
|
|
|
|
conn.setHostnameVerifier(new TrustAnyHostnameVerifier());
|
|
|
|
|
conn.connect();
|
|
|
|
|
InputStream is = conn.getInputStream();
|
|
|
|
|
BufferedReader br = new BufferedReader(new InputStreamReader(is));
|
|
|
|
|
String ret = "";
|
|
|
|
|
while ((ret = br.readLine()) != null) {
|
|
|
|
|
if (ret != null && !"".equals(ret.trim())) {
|
|
|
|
|
result.append(new String(ret.getBytes("ISO-8859-1"), "utf-8"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
log.info("recv - {}", result);
|
|
|
|
|
conn.disconnect();
|
|
|
|
|
br.close();
|
|
|
|
|
} catch (ConnectException e) {
|
|
|
|
|
log.error("调用HttpUtils.sendSSLPost ConnectException, url=" + url + ",param=" + param, e);
|
|
|
|
|
} catch (SocketTimeoutException e) {
|
|
|
|
|
log.error("调用HttpUtils.sendSSLPost SocketTimeoutException, url=" + url + ",param=" + param, e);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
log.error("调用HttpUtils.sendSSLPost IOException, url=" + url + ",param=" + param, e);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("调用HttpsUtil.sendSSLPost Exception, url=" + url + ",param=" + param, e);
|
|
|
|
|
}
|
|
|
|
|
return result.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static class TrustAnyTrustManager implements X509TrustManager {
|
|
|
|
|
@Override
|
|
|
|
|
public void checkClientTrusted(X509Certificate[] chain, String authType) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void checkServerTrusted(X509Certificate[] chain, String authType) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public X509Certificate[] getAcceptedIssuers() {
|
|
|
|
|
return new X509Certificate[]{};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static class TrustAnyHostnameVerifier implements HostnameVerifier {
|
|
|
|
|
@Override
|
|
|
|
|
public boolean verify(String hostname, SSLSession session) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static CloseableHttpClient createSSLClientDefault() {
|
|
|
|
|
try {
|
|
|
|
|
//使用 loadTrustMaterial() 方法实现一个信任策略,信任所有证书
|
|
|
|
|
SSLContext sslContext = new SSLContextBuilder().loadTrustMaterial(null, new TrustStrategy() {
|
|
|
|
|
// 信任所有
|
|
|
|
|
public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}).build();
|
|
|
|
|
//NoopHostnameVerifier类: 作为主机名验证工具,实质上关闭了主机名验证,它接受任何
|
|
|
|
|
//有效的SSL会话并匹配到目标主机。
|
|
|
|
|
HostnameVerifier hostnameVerifier = NoopHostnameVerifier.INSTANCE;
|
|
|
|
|
SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext, hostnameVerifier);
|
|
|
|
|
return HttpClients.custom().setSSLSocketFactory(sslsf).build();
|
|
|
|
|
} catch (KeyManagementException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
} catch (NoSuchAlgorithmException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
} catch (KeyStoreException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
return HttpClients.createDefault();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static HttpPost getHttpPost(String url, List<BasicNameValuePair> list) throws UnsupportedEncodingException {
|
|
|
|
|
// 创建 HttpPost 请求
|
|
|
|
|
HttpPost httpPost = new HttpPost(url);
|
|
|
|
|
// 设置长连接
|
|
|
|
|
httpPost.setHeader("Connection", "keep-alive");
|
|
|
|
|
// 设置代理(模拟浏览器版本)
|
|
|
|
|
httpPost.setHeader("User-Agent", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36");
|
|
|
|
|
httpPost.setHeader("Accept", "application/json, text/javascript, */*; q=0.01");
|
|
|
|
|
httpPost.setHeader("Accept-Encoding", "gzip, deflate, br");
|
|
|
|
|
httpPost.setHeader("Accept-Language", "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7");
|
|
|
|
|
httpPost.setHeader("Content-Type", "application/x-www-form-urlencoded;charset=UTF-8");
|
|
|
|
|
|
|
|
|
|
// 设置 Cookie
|
|
|
|
|
//httpPost.setHeader("Cookie", "UM_distinctid=16442706a09352-0376059833914f-3c604504-1fa400-16442706a0b345; CNZZDATA1262458286=1603637673-1530123020-%7C1530123020; JSESSIONID=805587506F1594AE02DC45845A7216A4");
|
|
|
|
|
// 创建 HttpPost 参数
|
|
|
|
|
if (list != null) {
|
|
|
|
|
List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>(list);
|
|
|
|
|
// 设置 HttpPost 参数
|
|
|
|
|
httpPost.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));
|
|
|
|
|
}
|
|
|
|
|
return httpPost;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static HttpGet getHttpGet(String url, List<BasicNameValuePair> list) throws UnsupportedEncodingException {
|
|
|
|
|
// 创建 HttpGet 请求
|
|
|
|
|
HttpGet httpGet = new HttpGet(url);
|
|
|
|
|
// 设置长连接
|
|
|
|
|
httpGet.setHeader("Connection", "keep-alive");
|
|
|
|
|
// 设置代理(模拟浏览器版本)
|
|
|
|
|
httpGet.setHeader("User-Agent", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36");
|
|
|
|
|
httpGet.setHeader("Accept", "application/json, text/javascript, */*; q=0.01");
|
|
|
|
|
httpGet.setHeader("Accept-Encoding", "gzip, deflate, br");
|
|
|
|
|
httpGet.setHeader("Accept-Language", "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7");
|
|
|
|
|
httpGet.setHeader("Content-Type", "application/x-www-form-urlencoded;charset=UTF-8");
|
|
|
|
|
// 创建 httpGet 参数
|
|
|
|
|
if (list != null) {
|
|
|
|
|
for (BasicNameValuePair pair : list) {
|
|
|
|
|
// 设置 httpGet 参数
|
|
|
|
|
httpGet.setHeader(pair.getName(), pair.getValue());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return httpGet;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static boolean testNetworkConnected(String url) {
|
|
|
|
|
// 创建 HttpClient 客户端
|
|
|
|
|
CloseableHttpClient httpClient = HttpUtils.createSSLClientDefault();
|
|
|
|
|
CloseableHttpResponse httpResponse = null;
|
|
|
|
|
try {
|
|
|
|
|
HttpGet httpGet = HttpUtils.getHttpGet(url, new ArrayList<>());
|
|
|
|
|
httpResponse = httpClient.execute(httpGet);
|
|
|
|
|
StatusLine statusLine = httpResponse.getStatusLine();
|
|
|
|
|
if (statusLine.getStatusCode() == 200) return true;
|
|
|
|
|
}
|
|
|
|
|
// 无论如何必须关闭连接
|
|
|
|
|
catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
} finally {
|
|
|
|
|
HttpUtils.closeHttp(httpClient, httpResponse);
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static String getCookies(CloseableHttpResponse httpResponse) {
|
|
|
|
|
Header str = httpResponse.getHeaders("Set-Cookie")[0];
|
|
|
|
|
return str.getValue().split(";")[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void closeHttp(CloseableHttpClient httpClient, CloseableHttpResponse httpResponse) {
|
|
|
|
|
try {
|
|
|
|
|
if (httpClient != null) {
|
|
|
|
|
httpClient.close();
|
|
|
|
|
}
|
|
|
|
|
if (httpResponse != null) {
|
|
|
|
|
httpResponse.close();
|
|
|
|
|
}
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*post操作是否成功*/
|
|
|
|
|
public static Boolean isOk(CloseableHttpResponse httpResponse) {
|
|
|
|
|
try {
|
|
|
|
|
return "200".equals(EntityUtils.toString(httpResponse.getEntity()));
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|