2006-01-12から1日間の記事一覧

Java2SE5.0のRMI使い方メモ

リモートインタフェース Remoteをextends メソッドはRemoteExceptionを投げる public interface Messenger extends Remote{ void putMessage(String msg) throws RemoteException; } 実装 てきとうに public class MessengerImpl implements Messenger{ publ…