- Java RMI Tutorial
- Java RMI - Home
- Java RMI - Introduction
- Java RMI - RMI Application
- Java RMI - GUI Application
- Java RMI - Database Application
- Java RMI Useful Resources
- Java RMI - Quick Guide
- Java RMI - Useful Resources
- Java RMI - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java RMI Tutorial
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.
Audience
This tutorial has been prepared for beginners to make them understand the basics of Remote Method Invocation in Java.
Prerequisites
For this tutorial, it is assumed that the readers have a prior knowledge of Java programming language. In some of the programs of this tutorial, we have used JavaFX for GUI purpose. So, it is recommended that you go through our JavaFX tutorial before proceeding further. https://www.tutorialspoint.com/javafx/
Advertisements