/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package RMI; import java.rmi.Remote; import java.rmi.RemoteException; /** * * @author Administrator */ public interface RMIServerService extends Remote{ //è¿ç¨æ¹æ³ä¹ä¸ public String send(String msg) throws RemoteException; //è¿ç¨æ¹æ³ä¹äº public String send(String yourNo,byte[] yourName) throws RemoteException; //å¨è¿éå¯ä»¥å建æ´å¤çè¿ç¨æ¹æ³â¦â¦ }