文章列表
第一步:接口(客户端与服务器端共享)
//Product.java
import java.rmi.*;
public interface Product extends Remote
{
String getDescription() throws RemoteException;
}
>javac Product.java
第二步:接口实现
//ProductImpl.java
import java.rmi.*;
import java.rmi.server.*;
public class ProductImpl extends UnicastRemoteObject implem ...
- 2006-11-30 18:08
- 浏览 890
- 评论(0)