android studio 编绎Cause: unable to find valid certification path to requested target
时间: 2023-11-12 14:58:37 浏览: 215
unable to find valid certification path to requested target 的问题
5星 · 资源好评率100%
这个错误通常是由于 Android Studio 无法验证 SSL 证书而导致的。解决此问题的方法是在 Android Studio 中配置 JDK 的证书信任库。
具体步骤如下:
1. 打开 Android Studio,点击菜单栏中的 File -> Other Settings -> Default Project Structure。
2. 在弹出的窗口中,选择 SDK Location 选项卡。
3. 在 JDK Location 下方,点击 Show in Explorer/Finder 按钮,打开 JDK 的安装目录。
4. 进入 jre/lib/security 目录,找到名为 cacerts 的文件。
5. 在 Android Studio 中,点击右下角的 Configure 按钮,选择 Settings。
6. 在搜索框中输入 SSL,找到 HTTP Proxy 选项卡。
7. 在 JVM Options 中添加以下参数:-Djavax.net.ssl.trustStore="path/to/cacerts",其中 path/to/cacerts 是 cacerts 文件的完整路径。
8. 点击 Apply 和 OK 按钮保存更改。
阅读全文