要編寫Java的RMI應(yīng)用程序,必須遵循以下步驟:
遠(yuǎn)程接口提供特定遠(yuǎn)程對象的所有方法的描述??蛻舳丝膳c此遠(yuǎn)程接口進(jìn)行通信。
創(chuàng)建遠(yuǎn)程接口 -
RemoteException
的異常。 以下是遠(yuǎn)程接口的示例。首先定義一個名為Hello
的接口,此接口有一個名為printMsg()
的方法。
import java.rmi.Remote;
import java.rmi.RemoteException;
// Creating Remote interface for our application
public interface Hello extends Remote {
void printMsg() throws RemoteException;
}
我們需要實現(xiàn)在前面的步驟中創(chuàng)建的遠(yuǎn)程接口??梢詥为殞懸粋€實現(xiàn)類,也可以直接使服務(wù)器程序?qū)崿F(xiàn)這個接口。
開發(fā)一個實現(xiàn)類 -
以下是一個實現(xiàn)類。 在這里,我們創(chuàng)建了一個名為ImplExample
的類,并實現(xiàn)了在上一步中創(chuàng)建的接口Hello
,并提供了打印消息 - printMsg()
方法的具體實現(xiàn)。
// Implementing the remote interface
public class ImplExample implements Hello {
// Implementing the interface method
public void printMsg() {
System.out.println("This is an example RMI program");
}
}
RMI服務(wù)器程序應(yīng)實現(xiàn)遠(yuǎn)程接口或擴(kuò)展實現(xiàn)類。在這里,我們應(yīng)該創(chuàng)建一個遠(yuǎn)程對象并將其綁定到RMIregistry
。
開發(fā)服務(wù)器程序 -
java.rmi.server
中的UnicastRemoteObject
類的exportObject()
方法導(dǎo)出遠(yuǎn)程對象。java.rmi.registry
包中的LocateRegistry
類的getRegistry()
方法獲取RMI注冊表。Registry
類的bind()方法將創(chuàng)建的遠(yuǎn)程對象綁定到注冊表。對于此方法,傳遞表示綁定名稱和導(dǎo)出的對象的字符串作為參數(shù)。對于此方法,需要傳遞一個表示綁定名稱的字符串值作為參數(shù)。這將返回遠(yuǎn)程對象。以下是RMI服務(wù)器程序的示例,創(chuàng)建一名為:Server.java的文件保存以下代碼 -
import java.rmi.registry.Registry;
import java.rmi.registry.LocateRegistry;
import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;
public class Server extends ImplExample {
public Server() {}
public static void main(String args[]) {
try {
// Instantiating the implementation class
ImplExample obj = new ImplExample();
// Exporting the object of implementation class
// (here we are exporting the remote object to the stub)
Hello stub = (Hello) UnicastRemoteObject.exportObject(obj, 0);
// Binding the remote object (stub) in the registry
Registry registry = LocateRegistry.getRegistry();
registry.bind("Hello", stub);
System.err.println("Server ready");
} catch (Exception e) {
System.err.println("Server exception: " + e.toString());
e.printStackTrace();
}
}
}
在這里我們編寫一個客戶端程序,獲取遠(yuǎn)程對象并使用此對象調(diào)用所需的方法。
要開發(fā)客戶端程序,請參考以下步驟 -
java.rmi.registry
包中的LocateRegistry
類的getRegistry()
方法獲取RMI注冊表。java.rmi.registry
包中的Registry
類的lookup()
方法從注冊表獲取對象。lookup()
返回一個類型為remote
的對象,將其轉(zhuǎn)換為Hello
類型。以下是RMI客戶端程序的示例,創(chuàng)建一個名稱為:Client.java 的文件 -
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
public class Client {
private Client() {}
public static void main(String[] args) {
try {
// Getting the registry
Registry registry = LocateRegistry.getRegistry(null);
// Looking up the registry for the remote object
Hello stub = (Hello) registry.lookup("Hello");
// Calling the remote method using the obtained object
stub.printMsg();
// System.out.println("Remote method invoked");
} catch (Exception e) {
System.err.println("Client exception: " + e.toString());
e.printStackTrace();
}
}
}
編譯應(yīng)用程序 -
或者 -
打開存儲所有程序的文件夾,使用以下命令編譯所有Java文件,如下所示 -
javac *.java
執(zhí)行結(jié)果如下 -
第一步 - 使用以下命令啟動rmi注冊表。
start rmiregistry
這將在單獨的窗口中啟動一個rmi注冊表,如下所示。
第二步 - 運行服務(wù)器類文件,如下所示。
java Server
打開另一個命令行提示符,執(zhí)行上面命令,如下所示 -
第三步 - 運行客戶端類文件,如下所示。
java Client
打開另一個命令行提示符,執(zhí)行上面命令,如下所示 -
驗證遠(yuǎn)程調(diào)用結(jié)果 - 當(dāng)啟動客戶端后,將在服務(wù)器中看到以下輸出。