java RMI

时间:2023-12-24 08:46:55
import java.rmi.*;

public interface Hello extends Remote {
public String getGreeting() throws RemoteException;
}
import java.rmi.*;
import java.rmi.server.*; public class HelloImpl extends UnicastRemoteObject implements Hello { public HelloImpl() throws RemoteException {
// No action needed here.
} public String getGreeting() throws RemoteException {
return ("Hello there!");
}
}
import java.rmi.*;

public class HelloServer {
private static final String HOST = "localhost"; public static void main(String[] args) throws Exception {
// Create a reference to an
// implementation object
HelloImpl temp = new HelloImpl();
// Create the string URL holding the
// object's name
String rmiObjectName = "rmi://" + HOST + "/Hello";
// (Could omit host name here, since 'localhost'
// would be assumed by default.)
// 'Bind' the object reference to the name
Naming.rebind(rmiObjectName, temp);
// Display a message so that we know the process
// has been completed
System.out.println("Binding complete…\n");
}
}
import java.rmi.*;

public class HelloClient {
private static final String HOST = "localhost"; public static void main(String[] args) {
try {
// Obtain a reference to the object from the
// registry and typecast it into the appropriate
// type
Hello greeting = (Hello) Naming.lookup("rmi://" + HOST + "/Hello");
// Use the above reference to invoke the remote
// object's method
System.out.println("Message received: " + greeting.getGreeting());
} catch (ConnectException conEx) {
System.out.println("Unable to connect to server!");
System.exit();
} catch (Exception ex) {
ex.printStackTrace();
System.exit();
}
}
}

编译运行用到的命令

note

javac Hello.java
javac HelloImpl.java
javac HelloServer.java
javac HelloClient.java //This would generate both a stub fi le and a skeleton fi le. However, this stage is no
//longer required
rmic HelloImpl //Starting the RMI registry
rmiregistry //start server
java HelloServer //start client
java HelloClient //result
"Hello there!"