How do I close a port in a case of program termina

2019-01-11 15:07发布

I am using Socket communication in one of my Java applications.As I know if the program meets any abnormal termination the listening ports does not get closed and the program cannot be started back because it reports "Port already open.." Do I have anyway to handle this problem? What is the general way used to handle this matter?

4条回答
老娘就宠你
2楼-- · 2019-01-11 15:11

The operating system should handle things such as that automatically, when the JVM process has ended. There might be a short delay before the port is closed, though.

查看更多
Fickle 薄情
3楼-- · 2019-01-11 15:15

As mentioned in the Handling abnormal Java program exits, you could setup a Runtime.addShutdownHook() method to deals with any special case, if it really needs an explicit operation.

查看更多
戒情不戒烟
4楼-- · 2019-01-11 15:32

It sounds like your program is listening on a socket. Normally, when your program exits the OS closes all sockets that might be open (including listening sockets). However, for listening sockets the OS normally reserves the port for some time (several minutes) after your program exits so it can handle any outstanding connection attempts. You may notice that if you shut down your program abnormally, then come back some time later it will start up just fine.

If you want to avoid this delay time, you can use setsockopt() to configure the socket with the SO_REUSEADDR option. This tells the OS that you know it's OK to reuse the same address, and you won't run into this problem.

You can set this option in Java by using the ServerSocket.setReuseAddress(true) method.

查看更多
相关推荐>>
5楼-- · 2019-01-11 15:38
登录 后发表回答