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代码,让客户端在java中使用套接字自动建立与服务器的连接。我在 LAN 网络上有一些机器,其中一台包含一个服务器,它监听所有连接的客户端,我希望客户端能够监听服务器并在服务器启动后立即连接。
在我看来,你有两个选择:
在您的客户端中编写一个循环。就像是
boolean connected = false; while (!connected) { connected = ... // try to connect Thread.sleep(/* some time */); }
让客户端监听一个端口。当服务器启动时,它会向该端口发送一条微不足道的消息。当客户端收到该消息时,他们知道服务器已启动并且可以连接到服务器。