我正在用 JAVA 实现一个简单的 RMI 服务器客户端程序。我实际上是新手。我有四个 java 文件。
堆栈.java
import java.rmi.*;
public interface Stack extends Remote{
public void push(int p) throws RemoteException;
public int pop() throws RemoteException;
}
StackImp.java
import java.rmi.*;
import java.rmi.server.*;
public class StackImp extends UnicastRemoteObject implements Stack{
private int tos, data[], size;
public StackImp()throws RemoteException{
super();
}
public StackImp(int s)throws RemoteException{
super();
size = s;
data = new int[size];
tos=-1;
}
public void push(int p)throws RemoteException{
tos++;
data[tos]=p;
}
public int pop()throws RemoteException{
int temp = data[tos];
tos--;
return temp;
}
}
RMIServer.java
import java.rmi.*;
import java.io.*;
public class RMIServer{
public static void main(String[] argv) throws Exception{
StackImp s = new StackImp(10);
Naming.rebind("rmi://localhost:2000/xyz", s);
System.out.println("RMI Server ready....");
System.out.println("Waiting for Request...");
}
}
RMIClient.java
import java.rmi.*;
public class RMIClient{
public static void main(String[] argv)throws Exception{
Stack s = (Stack)Naming.lookup("rmi://localhost:2000/xyz");
s.push(25);
System.out.println("Push: "+s.push());
}
}
我正在使用JDK1.5。我编译文件的顺序是,首先我编译 Stack.java 然后我编译 StackImp.java 然后我使用这个命令rmic StackImp这一切都成功了。但是当我尝试以这种方式运行注册表rmiregistery 2000时,命令提示符花费了太长时间。没啥事儿。我在家里的电脑上做这一切。而且这台电脑不在网络上。请建议我如何成功使用该程序。