如何打开 httpS URL 的流

发布于 2024-08-12 00:58:16 字数 68 浏览 1 评论 0原文

我想打开一个到 httpS URL 的流并读取数据。

请让我知道该怎么做。

问候 柴塔尼亚

I want to open a stream to a httpS URL and read the data.

Kindly let me know how to do it.

Regards
Chaitanya

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

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

发布评论

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

评论(1

小傻瓜 2024-08-19 00:58:16

这是关于读取/写入 URL 连接。

打开HTTPS连接与打开HTTP连接没有什么区别;如果您需要使用特定于 https 的方法,您可以将 url.openConnection() 的结果类强制转换为 HttpsURLConnection

URL url = new URL("https://your.https.url.here/");
HttpsURLConnection connection = (HttpsURLConnection) myurl.openConnection();

Here's a Sun tutorial on Reading from / Writing to URL connection.

Opening HTTPS connection is no different from opening HTTP connection; if you need to use https-specific methods you can class cast the result of url.openConnection() to HttpsURLConnection:

URL url = new URL("https://your.https.url.here/");
HttpsURLConnection connection = (HttpsURLConnection) myurl.openConnection();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文