使用java访问https,具体方法如下:URL reqURL = new URL("Https://www.baidu.com" ); //创建URL对象HttpsURLConnection httpsConn = (HttpsURLCo
使用java访问https,具体方法如下:
URL reqURL = new URL("Https://www.baidu.com" ); //创建URL对象
HttpsURLConnection httpsConn = (HttpsURLConnection)reqURL.openConnection();
//取得该连接的输入流,以读取响应内容
InputStreamReader insr = new InputStreamReader(httpsConn.getInputStream();
//读取服务器的响应内容并显示
int respInt = insr.read();
while( respInt != -1){
System.out.print((char)respInt);
respInt = insr.read();
}
--结束END--
本文标题: java中如何访问https
本文链接: https://lsjlt.com/news/113739.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0