如果当前连接、连接被拒绝或当前 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 不存在,我需要连接到下一个服务器。