下面是一个静态方法,用于检查对方RMI服务器是否在线,我基本上调用一种方法,如果它回复为true,则意味着连接已打开,如果它没有回复,而是给出异常则意味着某些东西是错误。有没有更好的方法呢?有没有更好的方法来加快这个过程?如果有连接,则返回值为fast,但如果不是,则需要一段时间。
public static boolean checkIfOnline(String ip,int port)
{
boolean online = false;
try {
InetAddress ipToConnect;
ipToConnect = InetAddress.getByName(ip);
Registry registry = LocateRegistry.getRegistry(ipToConnect.getHostAddress(),port);
ServerInterface rmiServer = (ServerInterface)registry.lookup("ServerImpl");
online = rmiServer.checkStudentServerOnline();
if(online)
{
System.out.println("Connected to "+ipToConnect);
}
} catch (RemoteException e) {
System.out.println(e.getMessage());
//e.printStackTrace();
return false;
} catch (NotBoundException e) {
System.out.println(e.getMessage());
//e.printStackTrace();
return false;
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return online;
}
答案 0 :(得分:3)
测试任何资源是否可用的最佳方法是尝试使用它。这将成功或失败,失败告诉你它不可用(或其他出错的地方)。
任何基于预先执行附加代码的方法仅仅是试图预测未来。它容易出现几个问题,其中包括测试错误的东西以及测试和使用之间的状态变化。