All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dahuatech.hutool.http.ssl.AndroidSupportSSLFactory Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.hutool.http.ssl;

import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;

import static com.dahuatech.hutool.http.ssl.SSLSocketFactoryBuilder.*;

/**
 * 兼容android低版本SSL连接 咱在测试HttpUrlConnection的时候 发现一部分手机无法连接[GithubPage]
 *
 * 

最后发现原来是某些SSL协议没有开启 * * @author MikaGuraNTK */ public class AndroidSupportSSLFactory extends CustomProtocolsSSLFactory { // Android低版本不重置的话某些SSL访问就会失败 private static String[] protocols = {SSLv3, TLSv1, TLSv11, TLSv12}; public AndroidSupportSSLFactory() throws KeyManagementException, NoSuchAlgorithmException { super(protocols); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy