提供远端访问的时候,我们首先需要定义远端能够访问哪些东西,在Java中,定义这类接口需要实现Remote接口 public interface Business extends Remote{ public String echo(String msg) throws RemoteException; } 定义完接口之后,这些功能是需要我们自己在Server端实现的,因此,声明一个类实现我们提供接口. public class BusinessImpl implements Business{…