All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.shoothzj.javatool.util.SocketUtil Maven / Gradle / Ivy

The newest version!
package com.github.shoothzj.javatool.util;

import java.net.ServerSocket;

public class SocketUtil {

    public static int getFreePort() throws Exception {
        try (ServerSocket serverSocket = new ServerSocket(0)) {
            return serverSocket.getLocalPort();
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy