RMI示例(利用RMI plug-in for Eclipse)

来源:互联网 发布:日语网络培训班 编辑:程序博客网 时间:2024/05/16 10:15

RMI示例

下面以一个例子说明怎么使用RMI技术。这个例子演示了怎样将一个文件上传到服务器和怎样将一个文件从服务器上下载下来。

利用RMI for Eclipse插件开发RMI需要以下步骤:

(1)定义和实现远端接口中的参数

 (2) 定义和实现远端接口

 (3) 编写服务端代码

(4)编写客户端代码 

部署按以下步骤:

(1)点击Start Local registry

(2)右键点击项目,选择RMI,点击Enable Stubs Generation

(3)运行服务器,run as-->run RMI Application:设置:RMI VM Properties:codebase 选择compute from classpath

(4)运行客户端,run as-->run RMI Application:设置:RMI VM Properties:security.policy新建一个即可。

 

下面是示例代码:

定义和实现远端接口中的参数
  (1)定义远端接口中的参数
  每一个远端接口中的参数都必须是可序列化的。那么,如何定义一个序列化的接口呢,简单,只需从java.io.Serializable继承即可,如下所示:
  import java.io.Serializable;
  
  public interface FileInformation extends Serializable {
    String getName();
    byte[] getContent();
    void  setInformation(String name , byte[] content);
  };
  (2)实现远端接口中的参数。
  实现远端接口中的参数的接口跟与实现其他任何接口没什么不一样的地方,如下所示
   public class FileInformationSev implements FileInformation {

bitsCN全力打造网管学习平台


   private String name = null ;
   private byte[] content = null ;
  
   public String getName() {
     return name ;
   }
   public byte[] getContent() {
     return content;
   }
   public void setInformation(String name, byte[] content) {
     this.name = name ;
     this.content = content ;
   }
  } 
  
  那么,为什么要序列化远端接口中的参数(返回值) ?这是因为需要将客户端的对象(参数)转化成byte stream,通过网络协议传输到服务端,再还原成服务端的对象进行调用。或者是需要将服务端的对象(返回值)转化成byte stream,通过网络协议传输到服务端,再还原成客户端的对象进行调用。
  在 jdk中, java.lang包和java.util包下的类都已经实现了序列化,直接可以用在远程接口中作参数或返回值;所有的基本类型也可以直接用在远程接口中作参数或返回值;
  
 定义和实现远端接口
  (1)定义远端接口
  远端接口必须从java.rmi.Remote继承;远端接口中的方法如果要throw异常,这个异常必须是java.rmi.RemoteException(或java.rmi.RemoteException的子类),否则,这个异常就不能被返回到客户端。Example如下:

feedom.net关注网管是我们的使命


     
  import java.rmi.Remote;
  import java.rmi.RemoteException;
  
  public interface LoadFile extends Remote {
    void upLoadFile(FileInformation fileInof) throws RemoteException;
    FileInformation downLoadFile(String filename) throws RemoteException ;
  } 

2)实现远端接口  
  实现远端接口比较容易,跟其他接口的实现没有什么区别,如下所示:
     
  import java.rmi.Remote;
  import java.rmi.RemoteException;
  
  import java.io.IOException;
  import java.io.File;
  import java.io.BufferedInputStream;
  import java.io.FileInputStream;
  import java.io.BufferedOutputStream;
  import java.io.FileOutputStream;
  import java.rmi.server.UnicastRemoteObject;
  
  public class LoadFileService extends UnicastRemoteObject implements LoadFile {
    private String currentDir= null ;
    // this contruction is needed  
    public LoadFileService() throws RemoteException { feedom.net国内最早的网管网站
     super();
    }
  
    public void setCurrentDir(String currentDir){
      this.currentDir = currentDir ;
    }
  
    public void upLoadFile(FileInformation fileInfo) throws RemoteException{
      BufferedOutputStream output = null ;
  
      try{
        // check paramter
        if(fileInfo == null ){
          throw new RemoteException("the paramter is null ");
        }
  
        //check fileName and content
        String fileName = fileInfo.getName() ;
        byte [] content = fileInfo.getContent() ;
        if(fileName == null || content == null ){
          throw new RemoteException("the file or the content is null ");
        }
  
        //create file
        String filePath = this.currentDir + "//" + fileName ;
        File  file = new File(filePath);
        if(!file.exists()){

blog.bitsCN.com网管博客等你来搏


          file.createNewFile();
        }
  
        //save the content to the file
        output = new BufferedOutputStream(new FileOutputStream(file));
        output.write(content);
  
      }catch(RemoteException ex){
        throw ex ;
      }catch(Exception ex){
        throw new RemoteException(ex.getLocalizedMessage());
      }finally{
        if(output != null ){
         try{
           output.close();
           output = null ;
         }catch(Exception ex){
         }
        }
      }
    }
  
    public FileInformation downLoadFile(String fileName) throws RemoteException {
  
      FileInformation fileInfo = null ;
      BufferedInputStream input = null ;
  
      try{
        // check paramter
        if(fileName == null){
          throw new RemoteException("the paramter is null ");

blog.bitsCN.com网管博客等你来搏


        }
  
        // get path
        String filePath = this.currentDir + "//" + fileName ;
        File  file = new File(filePath);
        if(!file.exists()){
          throw new RemoteException("the file whose name is " + fileName + " not existed ");
        }
  
        // get content
        byte[] content = new byte[(int)file.length()];
        input = new BufferedInputStream(new FileInputStream(file));
        input.read(content);
  
        // set file name and content to fileInfo
        fileInfo = new FileInformationSev();
        fileInfo.setInformation(fileName , content);
  
      }catch(RemoteException ex){
        throw ex ;
      }catch(Exception ex){
        throw new RemoteException(ex.getLocalizedMessage());
      }finally{
        if(input != null ){
         try{

dl.bitsCN.com网管软件下载


           input.close();
           input = null ;
         }catch(Exception ex){
         }
        }
      }
      return fileInfo ;
    }
  }
     
  编写服务端代码
  服务端代码主要有3个步骤:
  (1)加载安全管理器
  (2)创建一个服务对象
  (3)将这个服务对象注册到命名服务上
  :
  import java.rmi.RMISecurityManager;
  import java.rmi.Naming;
  
  public class RMIServer {
   public static void main(String[] args) {
     try{
   //加载安全管理器
        System.setSecurityManager(new RMISecurityManager() );
       
  //创建一个服务对象
        LoadFileService server = new LoadFileService();
        server.setCurrentDir("c://rmiexample");
       
        //将服务对象注册到rmi注册服务器上,而不是其他服务器
  //(因为LoadFileService extends UnicastRemoteObject)
        Naming.rebind("//127.0.0.1:2000/LoadFileServer", server);

feedom.net关注网管是我们的使命


     }catch(Exception ex){
       System.out.println(ex.getLocalizedMessage());
       ex.printStackTrace();
     }
   }
  }
  
  注意:将对象注册以后,不可关闭服务对象。

 编写客户端代码
  客户端代码需要两个步骤:
  (1)根据服务的名称,查找服务对象
  (2)调用服务服务对象对应的方法完成工作
  在这个例子中,我们从客户端上传一个文件到服务器,并将服务器的一个文件下载下来。
  代码如下:

import java.net.MalformedURLException;
import java.rmi.Naming;
import java.rmi.NotBoundException;
import java.rmi.RemoteException;

import rmi.common.*;

/*
 *   客户端代码需要两个步骤:
  (1)根据服务的名称,查找服务对象
  (2)调用服务服务对象对应的方法完成工作
 */
public class CallLoadTest {

 /**
  * @param args
  */
 public static void main(String[] args) {
  // TODO Auto-generated method stub
  
  try {
//   注意,这里必须使用接口LoadFile,不能使用他的实现类LoadFileImpl
   LoadFile loadFile=(LoadFile)Naming.lookup("test");
   
   FileInformation fileInfo=loadFile.downLoadFile("sdatlog.txt");
   byte[] content=fileInfo.getContent();
   
   for(byte b:content)
    System.out.println(b);
   //System.out.println(fileInfo.getContent().toString());
  
  } catch (MalformedURLException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (RemoteException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (NotBoundException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
  

 }

}

按照上文部署即可。

原创粉丝点击