经过各种关于stackoverflow的论坛和antony,vipul等博客的大量研究后,我仍然无法解决这个错误“没有对等证书”。
我使用的代码与此博客条目中给出的代码完全相同
但是,我仍然遇到了一个例外。我还创建了.bks
文件并在代码中使用它。请不要将其标记为重复,也不要回答我如何信任所有证书,因为我已经研究过了
我用过这段代码:
public class MyHttpClient extends DefaultHttpClient {
final Context context;
public MyHttpClient(Context context) {
this.context = context;
}
@Override
protected ClientConnectionManager createClientConnectionManager() {
SchemeRegistry registry = new SchemeRegistry();
registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
// Register for port 443 our SSLSocketFactory with our keystore
// to the ConnectionManager
registry.register(new Scheme("https", newSslSocketFactory(), 443));
return new SingleClientConnManager(getParams(), registry);
}
private SSLSocketFactory newSslSocketFactory() {
try {
// Get an instance of the Bouncy Castle KeyStore format
KeyStore trusted = KeyStore.getInstance("BKS");
// Get the raw resource, which contains the keystore with
// your trusted certificates (root and any intermediate certs)
InputStream in = context.getResources().openRawResource(R.raw.cacer);
// FileInputStream in = new FileInputStream(new File("key.bks"));
try {
trusted.load(in, "govill".toCharArray());
// Initialize the keystore with the provided trusted certificates
// Also provide the password of the keystore
} finally {
in.close();
}
// Pass the keystore to the SSLSocketFactory. The factory is responsible
// for the verification of the server certificate.
SSLSocketFactory sf = new SSLSocketFactory(trusted);
// Hostname verification from certificate
// http://hc.apache.org/httpcomponents-client-ga/tutorial/html/connmgmt.html#d4e506
sf.setHostnameVerifier(SSLSocketFactory.STRICT_HOSTNAME_VERIFIER);
return sf;
} catch (Exception e) {
System.out.print(e);
throw new AssertionError(e);
}
}
}