如何使用套接字java在两台服务器之间进行通信

时间:2015-04-29 04:33:57

标签: java sockets server

我正在尝试连接两台服务器

以下是我的代码,它将在两台服务器上运行

public class Node {

/**
 * @param args the command line arguments
 */

private int nodeID;
private int port;
private ServerSocket nodeSock;
private int maxNodes = SysInfo.maxNodes;
private Socket otherSock;
private PrintWriter ostream;
private BufferedReader in;
private int connectedNodeID;
private HashMap<Integer, Socket> socks;
private HashMap<Socket, PrintWriter> ostreams;
private boolean isPrimary;


public Node(int nodeID, boolean isPrimary){
    this.nodeID = nodeID;
    this.port   = SysInfo.nodePorts[nodeID];
    this.isPrimary = isPrimary;
    socks = new HashMap<Integer, Socket>();
    ostreams = new HashMap<Socket, PrintWriter>();
    System.out.println("current node #"+this.nodeID+" : ");
    try{
        //nodeSock = new ServerSocket(SysInfo.nodePorts[nodeID]);
        nodeSock = new ServerSocket(this.port,0,InetAddress.getByName("127.0.0.1"));
}catch(IOException e){
        e.printStackTrace();
}

    makeSystemReady();
}
private void makeSystemReady()  {
    System.out.println("Making the system ready");
    System.out.println(nodeSock.getLocalSocketAddress()+ ";"+nodeSock.getInetAddress()+";"+nodeSock.getLocalPort());
    for(int i = 0 ; i < SysInfo.maxNodes ; i++ ){
        if(i == nodeID) 
            continue;
       // this.connectToNode(SysInfo.nodePorts[i], i);
        try {
            System.out.println("waiting for connection to node #"+i+" to be established");
            Socket s = new Socket(InetAddress.getByName("127.0.0.1"), SysInfo.nodePorts[i]);
            //socks.put(port, s);
            while(!(s.isConnected()));
            System.out.println("node #"+nodeID+" connected to other node#"+i);

        } catch (IOException ex) {
            /* ignore */
        }
    }
}

我正在尝试检查两个节点是否已连接,然后才进入下一阶段(即,如果两个服务器都启动并运行,我将只启动实际通信。)

但我在这里没有得到正确的结果。 我得到的输出如下......

节点0的输出......

current node #0 :

使系统准备就绪

/127.0.0.1:20000;/127.0.0.1;20000

等待建立节点#1的连接

并在节点1输出.....

current node #1 : 

使系统准备就绪

/127.0.0.1:20001;/127.0.0.1;20001

等待建立节点#0的连接

节点#1连接到其他节点#0

在一个节点上显示它已连接,而在另一个节点上它没有显示任何内容。 请帮助我,我在这里出错了。

1 个答案:

答案 0 :(得分:1)

尝试在节点1启动之前建立与节点1的连接。连接失败并抛出您忽略的异常。如果你改变了&#34; / *忽略* /&#34; to&#34; ex.printStackTrace();&#34;,你会发现这种情况正在发生。

如果您不知道如何处理异常,请不要忽略异常,因为每次都会发生这种情况。

你不应该需要这个循环:

while(!(s.isConnected()));

套接字在&#34; new Socket&#34;之前建立连接。完成,所以在这里检查连接是没有意义的。更糟糕的是,如果它连接然后立即断开连接,你将陷入无限循环。