当前位置: 首页 > 工具软件 > RMIIO > 使用案例 >

Java API——RMIIO入门教程(1)基本介绍

罗智刚
2023-12-01

1. 概述:

有经验的童鞋们都知道,在RMI中使用流,就会出现无法序列化的问题。因为序列化就是通过流来实现的,无法再对流进行序列化。解决这个问题的唯一方法,就是要绕过流,用更底层的方式变幻流,再进行远程调用。


2. 项目主页:

http://openhms.sourceforge.net/rmiio/


3. 下载RMIIO API Jar

http://sourceforge.net/projects/openhms/files/rmiio/rmiio%202.0.0/


4. RMIIO Java API Document

http://openhms.sourceforge.net/rmiio/apidocs/index.html


5. RMIIO常用类

发送方,InputStream转换为RemoteInputStream。

// "is" is an InputStream.
RemoteInputStreamServer riss= new SimpleRemoteInputStream(is);
RemoteInputStream ris = riss.export();



接收方,RemoteInputStream转换为InputStream。

// ris is a RemoteInputStream.
InputStream is = RemoteInputStreamClient.wrap(ris);




原文链接: http://blog.csdn.net/poechant/article/details/7031666

转载于:https://my.oschina.net/chen106106/blog/50022

 类似资料: