⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cityfactoryimpl.java

📁 《JAVA分布式程序设计》一书的源代码。
💻 JAVA
字号:
import java.rmi.*;import java.rmi.server.UnicastRemoteObject;/** * @(#)CityFactoryImpl.java * @author Qusay H. Mahmoud */public class CityFactoryImpl extends UnicastRemoteObject implements CityFactory {   public CityFactoryImpl() throws RemoteException {      super();   }   public City2Impl getCityServer(String cityName) throws RemoteException {      City2Impl cityServer = new City2Impl(cityName);      return cityServer;   }   public static void main(String argv[]) {      System.setSecurityManager(new RMISecurityManager());      try {        CityFactoryImpl obj = new CityFactoryImpl();        Naming.rebind("//localhost/CityFactory", obj);        System.out.println("CityFactory bound in registry");      } catch (Exception e) {        e.printStackTrace();      }   }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -