如果服务器是远程的(与客户端不在同一台机器上),我对客户端实际上如何与服务器建立连接感到困惑。我的代码使用 localhost 可以正常工作,但我无法弄清楚客户端实际上是如何连接到服务器主机的,以便它查找 rmiregistry。我对存储在服务器注册表中的内容感到困惑,它是 Sample 还是 localhost?这可能很愚蠢,但我尝试在客户端将 localhost 转换为其 ipaddress 并执行 String url = "//" + server + ":" + 1099 + "/Sample"; 其中 server 是来自 getbyname() 的 ip,但我得到一个异常: java.rmi.NotBoundException: 127.0.0.1:1099/Sample 这是两台机器上的客户端和服务器。我只是想弄清楚两者是如何远程连接的,但它没有
客户:
import java.net.InetAddress;
import java.rmi.Naming;
import java.rmi.RemoteException;
public class SampleClient {
public static void main(String args[]) {
String url = "//" + "localhost" + ":" + 1099 + "/Sample";
SampleInterface sample = (SampleInterface)Naming.lookup(url);
} catch(Exception e) {
System.out.println("SampleClient exception: " + e);
}
}
}
服务器:
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.rmi.Naming;
import java.rmi.RemoteException;
import java.rmi.RMISecurityManager;
import java.rmi.server.UnicastRemoteObject;
public class SampleServer {
public static void main(String args[]) throws IOException {
// Create and install a security manager
if (System.getSecurityManager() == null)
System.setSecurityManager(new RMISecurityManager());
try {
String url = "//localhost:" + 1099 + "/Sample";
System.out.println("binding " + url);
Naming.rebind(url, new Sample());
// Naming.rebind("Sample", new Sample());
System.out.println("server " + url + " is running...");
}
catch (Exception e) {
System.out.println("Sample server failed:" + e.getMessage());
}
}
}