상세 컨텐츠

본문 제목

java rmi 사용해보기........ 리모트

관리X 과거글

by 까먹기전에 2015. 4. 2. 12:23

본문

반응형




가장먼저 제일 우측에


rmregistry 를 실행한다.





새로운 cmd창을 뛰운다.


server 실행


import java.rmi.*;

import java.rmi.server.*;

interface RSInterface extends Remote{

public void println(String msg) throws 


RemoteException;

}

class RSMain extends UnicastRemoteObject implements 


RSInterface{

public RSMain() throws RemoteException{}

public static void main(String args[]) throws 


Exception{

Naming.bind("rs",new RSMain());

}

public void println(String msg) throws 


RemoteException{

System.out.println(msg);

}

}





클라이언트 실행

import java.rmi.*;

class RC{

public static void main(String args[]) throws 


Exception{

String name="rmi://127.0.0.1/rs"; 

RSInterface remote=(RSInterface)Naming.lookup


(name);

remote.println("aaa");

}

}






그럼 서버에 aaa 가 찍히는걸 볼수있다.

관련글 더보기