Http请求类,基于JDK自带的HttpURLConnectionUtil请求类
创始人
2024-03-24 07:08:40
0
/*** Http请求类,基于JDK自带的HttpURLConnectionUtil请求类*/
public class HttpsURLConnectionUtil {private static Logger logger = LoggerFactory.getLogger(HttpsURLConnectionUtil.class);static {try {trustAllHttpsCertificates();HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {public boolean verify(String urlHostName, SSLSession session) {return true;}});} catch (Exception e) {}}private static void trustAllHttpsCertificates() throws NoSuchAlgorithmException, KeyManagementException {TrustManager[] trustAllCerts = new TrustManager[1];trustAllCerts[0] = new TrustAllManager();/** JDK1.7是TLS1.0,而JDK1.8是TLSv1.2,要调用ICC框架版本是JDK8,因此这里设置为TLSv1.2 **/SSLContext sc = SSLContext.getInstance("TLSv1.2");sc.init(null, trustAllCerts, null);HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());}private static class TrustAllManager implements X509TrustManager {public X509Certificate[] getAcceptedIssuers() {return null;}public void checkServerTrusted(X509Certificate[] certs, String authType) throws CertificateException {}public void checkClientTrusted(X509Certificate[] certs, String authType) throws CertificateException {}}/*** @param httpUrl 请求对象* @return String json字符串格式的响应数据**/public static String doGet(String httpUrl, Map headers) {logger.info("HttpsURLConnectionUtil,doGet,URL:{}, headers:{}", httpUrl, headers);StringBuilder response = new StringBuilder();BufferedReader bufferedReader = null;try {//创建连接URL url = new URL(httpUrl);HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();//忽略ssl验证//disableSslVerification(connection);//设置请求方式connection.setRequestMethod("GET");connection.setRequestProperty("accept", "*/*");connection.setRequestProperty("connection", "Keep-Alive");connection.setRequestProperty("content-type", "application/x-www-form-urlencoded;charset=UTF-8");//设置自定义请求头信息setCustomHeader(connection, headers);//设置请求超时时间:10秒connection.setConnectTimeout(10 * 1000);//设置读取超时时间:10秒connection.setReadTimeout(10 * 1000);//开始连接connection.connect();if (connection.getResponseCode() == 404) {JSONObject result = new JSONObject();result.put("code", "404");result.put("errMsg", "子系统未安装或接口与版本不匹配");return result.toJSONString();}//获取响应数据String readLine = null;bufferedReader = new BufferedReader(new InputStreamReader(connection.getInputStream(), "utf-8"));while ((readLine = bufferedReader.readLine()) != null) {response.append(readLine);}bufferedReader.close();} catch (MalformedURLException e) {logger.error("HttpsURLConnectionUtil,doGet,request error:{}", e.getMessage());e.printStackTrace();} catch (IOException e) {logger.error("HttpsURLConnectionUtil,doGet,request error:{}", e.getMessage());e.printStackTrace();}return response.toString();}/*** @param httpUrl 请求地址* @param jsonStr json字符串格式的请求数据* @return String json字符串格式的响应数据**/public static String doPost(String httpUrl, String jsonStr, Map headers) {logger.info("HttpsURLConnectionUtil,doPost,URL:" + httpUrl);StringBuilder response = new StringBuilder();BufferedReader bufferedReader = null;try {//创建连接URL url = new URL(httpUrl);HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();//忽略ssl验证//disableSslVerification(connection);//设置请求方式connection.setRequestMethod("POST");connection.setRequestProperty("accept", "application/json");connection.setRequestProperty("connection", "Keep-Alive");connection.setRequestProperty("content-type", "application/json;charset=UTF-8");//设置自定义请求头信息setCustomHeader(connection, headers);connection.setDoOutput(true);connection.setDoInput(true);//设置请求超时时间:10秒connection.setConnectTimeout(10 * 1000);//设置读取超时时间:10秒connection.setReadTimeout(10 * 1000);//设置请求参数if (jsonStr != null && !"".equalsIgnoreCase(jsonStr)) {OutputStream outputStream = connection.getOutputStream();byte[] input = jsonStr.getBytes("utf-8");outputStream.write(input, 0, input.length);outputStream.flush();outputStream.close();}connection.connect();if (connection.getResponseCode() == 404) {JSONObject result = new JSONObject();result.put("code", "404");result.put("errMsg", "子系统未安装或接口与版本不匹配");return result.toJSONString();}//获取响应数据String readLine = null;bufferedReader = new BufferedReader(new InputStreamReader(connection.getInputStream(), "utf-8"));while ((readLine = bufferedReader.readLine()) != null) {response.append(readLine);}bufferedReader.close();} catch (MalformedURLException e) {logger.error("HttpsURLConnectionUtil,doPost,request error:{}", e.getMessage());e.printStackTrace();} catch (IOException e) {logger.error("HttpsURLConnectionUtil,doPost,request error:{}", e.getMessage());e.printStackTrace();}return response.toString();}/*** @param httpUrl 请求地址* @param jsonStr json字符串格式的请求数据* @return String json字符串格式的响应数据**/public static String doPut(String httpUrl, String jsonStr, Map headers) {logger.info("HttpsURLConnectionUtil,doPut,URL:" + httpUrl);StringBuilder response = new StringBuilder();BufferedReader bufferedReader = null;try {//创建连接URL url = new URL(httpUrl);HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();//忽略ssl验证//disableSslVerification(connection);//设置请求方式connection.setRequestMethod("PUT");connection.setRequestProperty("accept", "application/json");connection.setRequestProperty("connection", "Keep-Alive");connection.setRequestProperty("content-type", "application/json;charset=UTF-8");//设置自定义请求头信息setCustomHeader(connection, headers);connection.setDoOutput(true);connection.setDoInput(true);//设置请求超时时间:10秒connection.setConnectTimeout(10 * 1000);//设置读取超时时间:10秒connection.setReadTimeout(10 * 1000);//设置请求参数if (jsonStr != null && !"".equalsIgnoreCase(jsonStr)) {OutputStream outputStream = connection.getOutputStream();byte[] input = jsonStr.getBytes("utf-8");outputStream.write(input, 0, input.length);outputStream.flush();outputStream.close();}connection.connect();if (connection.getResponseCode() == 404) {JSONObject result = new JSONObject();result.put("code", "404");result.put("errMsg", "子系统未安装或接口与版本不匹配");return result.toJSONString();}//获取响应数据String readLine = null;bufferedReader = new BufferedReader(new InputStreamReader(connection.getInputStream(), "utf-8"));while ((readLine = bufferedReader.readLine()) != null) {response.append(readLine);}bufferedReader.close();} catch (MalformedURLException e) {logger.error("HttpsURLConnectionUtil,doPut,request error:{}", e.getMessage());e.printStackTrace();} catch (IOException e) {logger.error("HttpsURLConnectionUtil,doPut,request error:{}", e.getMessage());e.printStackTrace();}return response.toString();}/*** @param httpUrl 请求地址* @param jsonStr json字符串格式的请求数据* @return String json字符串格式的响应数据**/public static String doDelete(String httpUrl, String jsonStr, Map headers) {logger.info("HttpsURLConnectionUtil,doDelete,URL:" + httpUrl);StringBuilder response = new StringBuilder();BufferedReader bufferedReader = null;try {//创建连接URL url = new URL(httpUrl);HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();//忽略ssl验证//disableSslVerification(connection);//设置请求方式connection.setRequestMethod("DELETE");connection.setRequestProperty("accept", "application/json");connection.setRequestProperty("connection", "Keep-Alive");connection.setRequestProperty("content-type", "application/json;charset=UTF-8");//设置自定义请求头信息setCustomHeader(connection, headers);connection.setDoOutput(true);connection.setDoInput(true);//设置请求超时时间:10秒connection.setConnectTimeout(10 * 1000);//设置读取超时时间:10秒connection.setReadTimeout(10 * 1000);//设置请求参数if (jsonStr != null && !"".equalsIgnoreCase(jsonStr)) {OutputStream outputStream = connection.getOutputStream();byte[] input = jsonStr.getBytes("utf-8");outputStream.write(input, 0, input.length);outputStream.flush();outputStream.close();}connection.connect();if (connection.getResponseCode() == 404) {JSONObject result = new JSONObject();result.put("code", "404");result.put("errMsg", "子系统未安装或接口与版本不匹配");return result.toJSONString();}//获取响应数据String readLine = null;bufferedReader = new BufferedReader(new InputStreamReader(connection.getInputStream(), "utf-8"));while ((readLine = bufferedReader.readLine()) != null) {response.append(readLine);}bufferedReader.close();} catch (MalformedURLException e) {logger.error("HttpsURLConnectionUtil,doDelete,request error:{}", e.getMessage());e.printStackTrace();} catch (IOException e) {logger.error("HttpsURLConnectionUtil,doDelete,request error:{}", e.getMessage());e.printStackTrace();}return response.toString();}/*** 设置自定义请求头信息**/public static void setCustomHeader(HttpURLConnection connection, Map headers) {if (!CollectionUtils.isEmpty(headers)) {Set set = headers.entrySet();Iterator iterator = set.iterator();while (iterator.hasNext()) {Map.Entry entry = (Map.Entry) iterator.next();String key = entry.getKey();String value = entry.getValue();connection.setRequestProperty(key, value);}}}
}

相关内容

热门资讯

保存时出现了1个错误,导致这篇... 当保存文章时出现错误时,可以通过以下步骤解决问题:查看错误信息:查看错误提示信息可以帮助我们了解具体...
汇川伺服电机位置控制模式参数配... 1. 基本控制参数设置 1)设置位置控制模式   2)绝对值位置线性模...
不能访问光猫的的管理页面 光猫是现代家庭宽带网络的重要组成部分,它可以提供高速稳定的网络连接。但是,有时候我们会遇到不能访问光...
表格中数据未显示 当表格中的数据未显示时,可能是由于以下几个原因导致的:HTML代码问题:检查表格的HTML代码是否正...
本地主机上的图像未显示 问题描述:在本地主机上显示图像时,图像未能正常显示。解决方法:以下是一些可能的解决方法,具体取决于问...
表格列调整大小出现问题 问题描述:表格列调整大小出现问题,无法正常调整列宽。解决方法:检查表格的布局方式是否正确。确保表格使...
不一致的条件格式 要解决不一致的条件格式问题,可以按照以下步骤进行:确定条件格式的规则:首先,需要明确条件格式的规则是...
Android|无法访问或保存... 这个问题可能是由于权限设置不正确导致的。您需要在应用程序清单文件中添加以下代码来请求适当的权限:此外...
【NI Multisim 14...   目录 序言 一、工具栏 🍊1.“标准”工具栏 🍊 2.视图工具...
银河麒麟V10SP1高级服务器... 银河麒麟高级服务器操作系统简介: 银河麒麟高级服务器操作系统V10是针对企业级关键业务...