package client;
import java.rmi.Naming;
import server.HelloInterface;
public class HelloClient {
/**
* 查找远程对象并调用远程方法
*/
public static void main(String[] argv) {
try {
HelloInterface hello = (HelloInterface) Naming.lookup("Hello");
// 如果要从另一台启动了RMI注册服务的机器上查找hello实例
// HelloInterface hello =
// (HelloInterface)Naming.lookup("//192.168.1.105:1099/Hello");
// 调用远程方法
String word=hello.say();
System.out.println(word);
} catch (Exception e) {
System.out.println("HelloClient exception: " + e);
}
}
}
package server;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface HelloInterface extends Remote{
/**
* 远程接口方法必须抛出 java.rmi.RemoteException
*/
public String say() throws RemoteException;
}
package server;
import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;
public class Hello extends UnicastRemoteObject implements HelloInterface {
private static final long serialVersionUID = -4497383228004817199L;
private String message;
/**
* 必须定义构造方法,即使是默认构造方法,也必须把它明确地写出来,因为它必须抛出出RemoteException异常
*/
public Hello(String message) throws RemoteException {
this.message=message;
}
/**
* 远程接口方法的实现
*/
@Override
public String say() throws RemoteException {
System.out.println("invoke say method.");
return message;
}
}
package server;
import java.rmi.Naming;
import java.rmi.registry.LocateRegistry;
public class HelloServer {
/**
* 启动 RMI 注册服务并进行对象注册
*/
public static void main(String[] argv) {
try {
// 启动RMI注册服务,指定端口为1099 (1099为默认端口)
// 也可以通过命令 $java_home/bin/rmiregistry 1099启动
// 这里用这种方式避免了再打开一个DOS窗口
// 而且用命令 rmiregistry启动注册服务还必须事先用RMIC生成一个stub类为它所用
LocateRegistry.createRegistry(1099);
// 创建远程对象的一个或多个实例,下面是hello对象
// 可以用不同名字注册不同的实例
HelloInterface hello = new Hello("hello world.");
// 把hello 注册到RMI注册服务器上,命名为Hello
Naming.rebind("Hello", hello);
// 如果要把hello 实例注册到另一台启动了RMI注册服务的机器上
// Naming.rebind("//192.168.1.105:1099/Hello",hello);
System.out.println("Hello Server is ready.");
} catch (Exception e) {
System.out.println("Hello Server failed: " + e);
}
}
}
11-01