我已经编写了小型 RMI 聊天程序及其编译正确。但是当我尝试运行客户端程序时,它会导致异常“ java.rmi.NotBoundException - ServerInterface
”服务器程序运行时没有任何错误。请帮我解决这个问题。
这是一些客户端代码
public static void main (String[] args)
{
String address = "rmi://localhost/ServerInterface";
try
{
ServerInterface si= (ServerInterface) Naming.lookup(address);
new Thread(new Client(si)).start();
}
catch (Exception e)
{
System.err.println(e.toString()) ;
}
}