Java Rmi 简明教程
Discuss Java RMI
RMI 表示 Remote Method Invocation 。它是一种允许一个驻留在一个系统(JVM)中的对象访问/调用在另一个 JVM 上运行的对象的机制。RMI 用于构建分布式应用程序;它提供了 Java 程序之间的远程通信。它在 java.rmi 包中提供。
RMI stands for Remote Method Invocation. It is a mechanism that allows an object residing in one system (JVM) to access/invoke an object running on another JVM. RMI is used to build distributed applications; it provides remote communication between Java programs. It is provided in the package java.rmi.