package org.sxkj.common.utils;
|
|
import org.slf4j.Logger;
|
import org.slf4j.LoggerFactory;
|
|
import javax.net.ssl.*;
|
import java.io.*;
|
import java.net.*;
|
import java.security.cert.X509Certificate;
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* 通用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;
|
}
|
}
|
|
/*
|
*
|
* 调用:
|
* HttpUtil.post(talkUrl, accessToken,"application/json", param);
|
*/
|
public static String post(String requestUrl, String accessToken, String params)
|
throws Exception {
|
String contentType = "application/x-www-form-urlencoded";
|
return post(requestUrl, accessToken, contentType, params);
|
}
|
|
public static String post(String requestUrl, String accessToken, String contentType, String params)
|
throws Exception {
|
String encoding = "UTF-8";
|
if (requestUrl.contains("nlp")) {
|
encoding = "GBK";
|
}
|
return post(requestUrl, accessToken, contentType, params, encoding);
|
}
|
|
public static String post(String requestUrl, String accessToken, String contentType, String params, String encoding)
|
throws Exception {
|
String url = requestUrl + "?access_token=" + accessToken;
|
return postGeneralUrl(url, contentType, params, encoding);
|
}
|
|
public static String postGeneralUrl(String generalUrl, String contentType, String params, String encoding)
|
throws Exception {
|
URL url = new URL(generalUrl);
|
// 打开和URL之间的连接
|
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
|
connection.setRequestMethod("POST");
|
// 设置通用的请求属性
|
connection.setRequestProperty("Content-Type", contentType);
|
connection.setRequestProperty("Connection", "Keep-Alive");
|
connection.setUseCaches(false);
|
connection.setDoOutput(true);
|
connection.setDoInput(true);
|
|
// 得到请求的输出流对象
|
DataOutputStream out = new DataOutputStream(connection.getOutputStream());
|
out.write(params.getBytes(encoding));
|
out.flush();
|
out.close();
|
|
// 建立实际的连接
|
connection.connect();
|
// 获取所有响应头字段
|
Map<String, List<String>> headers = connection.getHeaderFields();
|
|
// 定义 BufferedReader输入流来读取URL的响应
|
BufferedReader in = null;
|
in = new BufferedReader(
|
new InputStreamReader(connection.getInputStream(), encoding));
|
String result = "";
|
String getLine;
|
while ((getLine = in.readLine()) != null) {
|
result += getLine;
|
}
|
in.close();
|
return result;
|
}
|
|
public static String getParamValue(String params, String key) {
|
if (params == null || key == null || params.isEmpty() || key.isEmpty()) {
|
return null;
|
}
|
|
// 将参数拆分为键值对
|
String[] pairs = params.split("&");
|
Map<String, String> paramMap = new HashMap<>();
|
|
for (String pair : pairs) {
|
String[] keyValue = pair.split("=", 2); // 防止值中含有 `=` 的情况
|
if (keyValue.length == 2) {
|
paramMap.put(keyValue[0].trim(), keyValue[1].trim());
|
} else {
|
paramMap.put(keyValue[0].trim(), ""); // 没有值的情况
|
}
|
}
|
|
// 返回目标 key 对应的值
|
return paramMap.get(key);
|
}
|
|
/**
|
* 校验地址是否有效
|
* @param url
|
* @return
|
*/
|
public static boolean validateUrl(String url) {
|
try {
|
URL u = new URL(url);
|
HttpURLConnection connection = (HttpURLConnection) u.openConnection();
|
connection.setRequestMethod("HEAD");
|
connection.setConnectTimeout(5000); // 设置连接超时时间为5秒
|
connection.setReadTimeout(5000); // 设置读取超时时间为5秒
|
int responseCode = connection.getResponseCode();
|
// 检查响应码是否为200,或者重定向(3xx)后的最终响应码是否为200
|
// 通常我们认为2xx都是成功的(如200、201、202等),3xx重定向我们通常认为也是有效的,因为资源存在只是位置变了
|
// 但是注意,如果重定向次数过多,HttpURLConnection默认会处理3次,如果超过会抛异常,但我们这里只检查响应码
|
return (responseCode >= 200 && responseCode < 400); // 2xx和3xx都认为有效
|
} catch (Exception e) {
|
return false;
|
}
|
}
|
}
|