need help to run RMI Registry
问题 I'm implementing a simple RMI Server Client program in JAVA. I'm new to this actually. i have four java files. Stack.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