1

如果当前连接、连接被拒绝或当前 IP 不存在,我需要切换到另一个。这是代码的一部分:

String [] server= {"10.201.30.200", "10.66.20.70",}; // Servers array

public void Telnet(String[] server) {
    try {
        out2 = new PrintStream(new FileOutputStream("output.txt"));
        String [] hrnc = {"HRNC01_", "HRNC02_", "HRNC03_","NRNC01_", "NRNC02_"};

        for (int i = 0; i < server.length; i++) {        
            // Connect to the specified server
            if (server[i].equals("10.201.30.200")) { 
                // Commands via telnet
            } else if (server[i].equals("10.66.20.70")) {
                // Commands
            }
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return null;
}    

例如,如果第一个 IP 不存在,我需要连接到下一个服务器。

4

2 回答 2

1

尝试建立连接,捕获异常,如果发生,请尝试另一个 IP 地址。

编辑:当然!这是我的实现

package tests;

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import java.net.Socket;

public class Connection {
    // Servers array
    private static final String[] server = { "10.201.30.200", "10.66.20.70" };
    // @logoff: default Telnet port
    private static final int port = 23;

    public static void telnet(String[] server) {
        PrintStream out2;
        try {

            out2 = new PrintStream(new FileOutputStream("output.txt"));

            String[] hrnc = { "HRNC01_", "HRNC02_", "HRNC03_", "NRNC01_",
                    "NRNC02_" };

            for (int i = 0; i < server.length; i++) {
                try {
                    // @logoff: try connection
                    Socket socket = new Socket(server[i], port);
                } catch (IOException e) {
                    // @logoff: typical "Connection timed out" or
                    // "Connection refused"
                    System.err.println("Error connecting to " + server[i]
                            + ". Error = " + e.getMessage());
                    // @logoff: continue to next for element
                    continue;
                }

                // Connect to the specified server
                if (server[i].equals("10.201.30.200")) {
                    // Commands via telnet
                }

                else if (server[i].equals("10.66.20.70")) {
                    // Commands
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        // @logoff: your method returns void
        return;
    }

    public static void main(String[] args) {
        telnet(server);
    }
}
于 2012-10-23T10:20:48.440 回答
1

尝试将每个连接尝试放在 try/catch 语句中

于 2012-10-23T10:25:43.400 回答