因此,我正在尝试绑定并监听我学校服务器上的一个端口,以便在我的网络课程中进行分配。我遇到的是,当我在 java 中创建 ServerSocket 时,我不断地得到一个 IOException,即使我尝试绑定到高频带上的端口也是如此。
我最初尝试绑定到 1088 端口(或多或少寄予厚望),但如果不成功,我将尝试绑定到 1024 以上的随机端口(服务器上保留任何更低的端口)。
这是我得到的:
import java.io.IOException;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.UnknownHostException;
import java.util.Random;
public class main
{
/**
* @param args
*/
public static void main(String[] args)
{
Random r = new Random();
boolean connected = true;
ServerSocket serverSocket = null;
int welcomePortNum = new Integer(args[0]);
if(welcomePortNum >= 65536)
{
System.out.println("Invalid welcome port number, terminating execution.");
System.exit(0);
}
do
{
connected = true;
System.out.println(welcomePortNum);
try
{
serverSocket = new ServerSocket(welcomePortNum, 5, InetAddress.getByName("loki.ist.unomaha.edu"));
} catch(UnknownHostException e)
{
System.err.println("Could not connect to 'loki.ist.unomaha.edu'.");
connected = false;
//System.exit(1);
}catch(IOException e)
{
System.err.println("Could not get the I/O for the connection to loki.ist.unomaha.edu.");
connected = false;
//System.exit(1);
}
if(connected == false)
welcomePortNum = r.nextInt(64512) + 1024;
System.out.println(connected);
}
while(connected == false);
// TODO Auto-generated method stub
}
}
有任何想法吗?