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

发表于:2007-06-22来源:作者:点击数: 标签:
import java .rmi.*; importjavax.naming.*; /** *ThisclassregistersR MI ExampleServerwiththeRMIregistry *@authorRenga **/ publicclassRMIExampleSetup{ /** *Mainmethod *@paramargsCommand-linearguments **/ publicstaticvoidmain(String[]args){ tr

   
import java.rmi.*;
import javax.naming.*;

/**
 * This class registers RMIExampleServer with the RMI registry
 * @author Renga
 **/

public class RMIExampleSetup {

/**
 * Main method
 * @param args Command-line arguments
 **/
public static void main( String[] args ) {
try {
// Set the security manager
System.setSecurityManager( new RMISecurityManager() );

// Create a new object of RMIExampleServer
RMIExampleServer server = new RMIExampleServer();

// Bind this object with the RMI registry
Naming.bind( "RMIExample", server );
} catch( Exception e ) {
e.printStackTrace();
}
}
}

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