gpt4 book ai didi

java - 我如何知道我是否已成功连接到我打开连接的 URL?

转载 作者:行者123 更新时间:2023-11-29 03:39:40 25 4
gpt4 key购买 nike

为了检查我是否可以连接到名为 service 的网络应用程序,我打开了一个到它地址的连接。我如何检查是否已经连接到这个 URL/Service ?我正在考虑发送某种状态方法(当客户端尝试打开到此 URL 的连接时)来确定客户端是否能够成功建立到服务的连接。但我该怎么做呢?

我正在尝试这样的事情:

          final URL url = new URL("http://localhost:8084/service/index.jsp");
final URLConnection urlc = url.openConnection();
InputStream response = urlc.getInputStream();
// Now call a method in the service app that sends a status method...
// .....or can I get away with this ?

最佳答案

我建议

    URL url = new URL("http://stackoverflow.com/questions/13775103/how-do-i-know-if-i-have-successfully-connected-to-the-url-i-opened-a-connection");
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
System.out.println(conn.getResponseCode());

它打印200(OK)

关于java - 我如何知道我是否已成功连接到我打开连接的 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13775103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com