I want to be able to run a file that is on a different network, then run a file on my network and be able to communicate through them. For example: (on my file)
println_to_other_file("Hello World!")
and then this appears on the console of the other file on the different network:
New Message: Hello World!
So my problem is that i dont know where to start with this issue. Any help would be greatly appreciated. Thanks!
CodePudding user response:
So my problem is that i dont know where to start with this issue.
You should start at docs.oracle.com/javase/tutorial/networking/overview/networking.html
CodePudding user response:
I'm not too much of an expert in this area, but I would suggest starting off with networking and the use of client and server systems. Good luck!