📄 cityfactoryimpl.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 + -