Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试使用 java 连接到服务器时出现问题。
让我们在线说:
server.connect()
程序只是停止,没有抛出异常。
我想做的是在 5 秒后抛出异常,如果它停止了。但是由于我无法进入下一行,这怎么可能呢?
就像是
if(after 5 sec server.connect is stalled){ throw an exception }
这甚至能解决问题吗?
我认为你可以使用这个:
connection.setConnectTimeout(5000);//This value is in Mili seconds