我安装了 pkcs12 证书,可以在浏览器上加载 url “httpsURL”。
但是我的独立 java 程序不能做同样的事情。
System.setProperty("javax.net.ssl.keyStore", "d:/keys2222/prince.p12");
System.setProperty("javax.net.ssl.keyStorePassword", "password");
URL url = new URL("httpsURL"); // URL is perfect
URLConnection con = url.openConnection(); // fails here
请帮我