I want to create two Java applications that will be able to send message to each other wirelessly. The two applications does not need to be in different machines, since this is only a simulation so I hope to run it in the same machine. Is there a way to do that? Thank you!
Asked
Active
Viewed 89 times
1 Answers
0
You can create a connection with socket, or with RMI.
If I remember right, the RMI is newer than socket..
However you can find there about socket: All About Socket
and here: About RMI

Teo
- 3,143
- 2
- 29
- 59
-
Oh yes thank you, I always think about Java Wireless API but forgot the RMI :D – Aliencc Feb 22 '14 at 18:12