连接到 https 站点(服务器)

发布于 2024-08-05 01:37:01 字数 103 浏览 2 评论 0原文

我有一些 java-app,我想建立到某个 https 站点的连接,我该如何使用 URLConnection 来做到这一点?当使用有效的证书颁发机构签署此站点的证书时,我是否应该使用信任存储?

I have some java-app, and i want to establish a connection to some https Site, how can i do this, using URLConnection? Should i use trust store, when certificate from this site was signed using a valid certificate authority?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

血之狂魔 2024-08-12 01:37:01

是的。 URLConnection 应该可以工作。例如,

        URL a = new URL("https://login.yahoo.com");
        conn = a.openConnection();
        InputStream is = conn.getInputStream();

JRE 附带一个包含大多数 CA 证书的默认信任存储。只要证书是由其中之一签署的,您就不需要做任何特殊的事情。

Yes. URLConnection should work. For example,

        URL a = new URL("https://login.yahoo.com");
        conn = a.openConnection();
        InputStream is = conn.getInputStream();

JRE comes with a default trust store with most of the CA certs. As long as the cert is signed by one of them, you don't need to do anything special.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文