3

我正在用 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时,命令提示符花费了太长时间。没啥事儿。我在家里的电脑上做这一切。而且这台电脑不在网络上。请建议我如何成功使用该程序。

4

1 回答 1

7

命令提示符花费了太长时间。没啥事儿。

什么都不应该发生 - 注册表正在运行,您现在可以从另一个命令提示符启动服务器。

或者,如果您只在这台机器上运行一个 RMI 服务器进程,您可以在与 RMI 服务器相同的进程中运行注册表:

import java.rmi.*;
import java.rmi.registry.*;
import java.io.*;


public class RMIServer{

  public static void main(String[] argv) throws Exception{

    StackImp s = new StackImp(10);
    Registry reg = LocateRegistry.createRegistry(2000);
    reg.rebind("xyz", s);
    System.out.println("RMI Server ready....");
    System.out.println("Waiting for Request...");   

  }
}

这样您就不需要单独的rmiregistry命令,只需运行服务器(包括注册表),然后运行客户端(与在服务器进程中运行的注册表对话)。

于 2013-01-14T18:18:40.037 回答