以下は、反対側のRMIサーバーがオンラインかどうかを確認するための静的メソッドです。基本的に、trueと応答した場合は接続がオンであることを意味し、応答しない場合は代わりに例外を発生させ、何かが間違っていることを意味するメソッドを呼び出します。それを行うより良い方法はありますか?そして、プロセスをスピードアップするためのより良い方法はありますか? 接続がある場合は値が速く返されますが、そうでない場合は時間がかかります。
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;
}