当您在使用Android WebView加载一个HTTPS URL时,可能会遇到SSL握手失败的情况。这通常发生在您的SSL证书无效或未经验证时。以下是一个基本的解决方案:
您需要导入证书并使用它来建立SSL连接。您可以通过将证书放在您的本地存储位置上(例如assets文件夹)并将其加载到您的WebView中来实现此操作。
另一种解决方案是使用比较宽松的SSLPolicy来绕过SSL证书验证。但是,这不是一个理想的解决方案,因为它将开放您的应用程序的漏洞。
以下是实现第一种解决方案的示例代码:
//导入证书 public class SslCertificateUtil { private static final String TAG = "SslCertificateUtil"; private KeyStore keyStore; private Context mContext;
public SslCertificateUtil(Context context) { try { keyStore = KeyStore.getInstance("BKS"); mContext = context; InputStream in = mContext.getAssets().open("your_certificate.bks"); keyStore.load(in, "yourpassword".toCharArray()); } catch (Exception e) { e.printStackTrace(); } }
public SSLSocketFactory getSSLSocketFactory() { try { TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm()); trustManagerFactory.init(keyStore); SSLContext sslContext = SSLContext.getInstance("TLS"); sslContext.init(null, trustManagerFactory.getTrustManagers(), new SecureRandom()); return sslContext.getSocketFactory(); } catch (Exception e) { e.printStackTrace(); } return null; } }
//使用证书建立WebView连接 WebView webView = (WebView)findViewById(R.id.webView); SslCertificateUtil sslCertificateUtil = new SslCertificateUtil(getApplicationContext()); webView.setWebViewClient(new WebViewClient() { @Override public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError