本文主要是介绍HttpURLConnection在Springboot中封装的工具类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
AnroidSDK本身自带两种网络框架HttpClient和HttpURLConnection,但Google在API23之后放弃了HttpClient的支持推荐使用HttpURLConnection。
1. POM依赖项
<dependency><groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId><scope>compile</scope>
</dependency>
2. 封装工具类
import javax.net.ssl.*;
import java.io.*;
import java.net.HttpURLConnection;
import java.net.URL;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;/*** 封装HttpsURLConnection类,支持http/https** @Author leizhigang* @Date 2019-9-15*/
public class YesHttpsUtils {private static final class DefaultTrustManager implements X509TrustManager {@Overridepublic void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {}@Overridepublic void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {}@Overridepublic X509Certificate[] getAcceptedIssuers() {return null;}}private static HttpsURLConnection getHttpsURLConnection(String uri, String method) throws IOException {SSLContext ctx = null;try {ctx = SSLContext.getInstance("TLS");ctx.init(new KeyManager[0], new TrustManager[] { new DefaultTrustManager() }, new SecureRandom());} catch (KeyManagementException e) {e.printStackTrace();} catch (NoSuchAlgorithmException e) {e.printStackTrace();}SSLSocketFactory ssf = ctx.getSocketFactory();URL url = new URL(uri);HttpsURLConnection httpsConn = (HttpsURLConnection) url.openConnection();//绕过HTTPS相关证书关键代码-开始httpsConn.setSSLSocketFactory(ssf);//绕过HTTPS相关证书关键代码-结束httpsConn.setHostnameVerifier(new HostnameVerifier() {@Overridepublic boolean verify(String arg0, SSLSession arg1) {return true;}});httpsConn.setRequestMethod(method);httpsConn.setDoInput(true);httpsConn.setDoOutput(true);httpsConn.setConnectTimeout(15000);httpsConn.setReadTimeout(10000);return httpsConn;}private static byte[] getBytesFromStream(InputStream is) throws IOException {ByteArrayOutputStream baos = new ByteArrayOutputStream();byte[] kb = new byte[1024];int len;while ((len = is.read(kb)) != -1) {baos.write(kb, 0, len);}byte[] bytes = baos.toByteArray();baos.close();is.close();return bytes;}private static void setBytesToStream(OutputStream os, byte[] bytes) throws IOException {ByteArrayInputStream bais = new ByteArrayInputStream(bytes);byte[] kb = new byte[1024];int len;while ((len = bais.read(kb)) != -1) {os.write(kb, 0, len);}os.flush();os.close();bais.close();}public static byte[] doGet(String uri) throws IOException {HttpsURLConnection httpsConn = getHttpsURLConnection(uri, "GET");return getBytesFromStream(httpsConn.getInputStream());}public static byte[] doPost(String uri, String data) throws IOException {HttpsURLConnection httpsConn = getHttpsURLConnection(uri, "POST");setBytesToStream(httpsConn.getOutputStream(), data.getBytes());return getBytesFromStream(httpsConn.getInputStream());}private static HttpURLConnection getHttpURLConnection(String uri, String method) throws IOException {URL url = new URL(uri);HttpURLConnection httpConn = (HttpURLConnection) url.openConnection();httpConn.setRequestMethod(method);httpConn.setDoInput(true);httpConn.setDoOutput(true);httpConn.setConnectTimeout(15000);httpConn.setReadTimeout(10000);return httpConn;}public static byte[] get(String uri) throws IOException {HttpURLConnection httpConn = getHttpURLConnection(uri, "GET");return getBytesFromStream(httpConn.getInputStream());}public static byte[] post(String uri, String data) throws IOException {HttpURLConnection httpConn = getHttpURLConnection(uri, "POST");setBytesToStream(httpConn.getOutputStream(), data.getBytes());return getBytesFromStream(httpConn.getInputStream());}
}
这篇关于HttpURLConnection在Springboot中封装的工具类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!