gpt4 book ai didi

Java - java.net.NoRouteToHostException : No route to host: connect

转载 作者:行者123 更新时间:2023-12-01 05:28:26 27 4
gpt4 key购买 nike

我有一个类,如果存在连接,则从 URL 返回数据字符串,如果没有连接,则返回 null。

我的问题是我正在检查:

if (str == null) {
System.out.println("Error: No Connection");
}

但是,虽然这确实有效,但它也会打印在控制台中:

java.net.NoRouteToHostException: No route to host: connect

我想知道这意味着什么,是否意味着我犯了一个错误?尽管该程序运行良好,但除此之外,这个小异常不断出现。帮忙?

最佳答案

完成猜测,直到您发布更多代码...但我的猜测是您在打印消息 return str 后忘记返回,如果没有返回,它将尝试执行其余的代码..

private String myFunction(String url){
if (str == null) {
System.out.println("Error: No Connection");
return null;
}
//do other stuff that you are already doing .

}

关于Java - java.net.NoRouteToHostException : No route to host: connect,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9405468/

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