Java核心代码例程之:RMIExampleServer.java

发表于:2007-06-22来源:作者:点击数: 标签:

   
import java.rmi.*;
import java.rmi.server.*;

/**
 * This class is a simple example of a RMI Server
 * @author Renga
 **/

public class RMIExampleServer extends UnicastRemoteObject 
implements RMIExample {

/**
 * Do nothing constructor
 * @throws RemoteException
 **/
public RMIExampleServer() throws RemoteException {
System.out.println( "RMIExampleServer::cntr" );
}

/**
 * Returns "Hello World from RMI!"
 * @return A string
 * @throws RemoteException
 **/
public String sayHello() throws RemoteException {
return "Hello World from RMI!";
}
}

原文转自:http://www.ltesting.net