Usine de sockets SSL personnalisée pour les certificats auto-signés
Pour se connecter à un site Web à l'aide d'un certificat auto-signé, les applications Java doivent modifier leur comportement par défaut. Voici comment atteindre vos objectifs sans faire de compromis en utilisant une usine SSLSocket personnalisée :
Créez une usine SSLSocket :
Définissez le SSLSocket Factory :
Exemple de code :
import javax.net.ssl.*; import java.io.FileInputStream; import java.security.KeyStore; public class CustomSSLContext { public static SSLSocketFactory getSSLSocketFactory() { // Load the keystore with the self-signed certificate KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType()); keyStore.load(new FileInputStream("truststore.jks"), "password".toCharArray()); // Create a TrustManagerFactory and initialize it with the keystore TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm()); tmf.init(keyStore); // Create an SSLContext and initialize it with the TrustManagerFactory SSLContext sslContext = SSLContext.getInstance("TLS"); sslContext.init(null, tmf.getTrustManagers(), null); // Get the SSLSocketFactory from the SSLContext return sslContext.getSocketFactory(); } public static void main(String[] args) { // Create an HttpsURLConnection with the custom SSLSocketFactory URL url = new URL("https://host.example.com/"); HttpsURLConnection conn = (HttpsURLConnection) url.openConnection(); conn.setSSLSocketFactory(getSSLSocketFactory()); // Send the request to the website conn.setMethod("POST"); conn.getOutputStream().write("data".getBytes()); // Read the response from the website conn.getInputStream().read(); } }
Cette approche vous permet de vous connecter au site Web en utilisant le certificat auto-signé sans affecter les autres connexions dans l'application ni nécessiter de modifications du JRE.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!