Run a program on a specific port of my machine
I need to run a setup on my windows machine with 1 master and 2 workers on the same machine. I have setup the master to run on po开发者_如何学JAVArt 1111 and workers to run on 2222 & 2223. How can i access these ports to run my programs? I dont want to install VmWare or any virtual desktop.
I want to know how can I run a program on a specific port of my machine. If it requires a socket program, can someone provide a sample JAVA API for the same?
You cannot run a program on a Port, what you can do is make your program listen to a port. Check this tutorial from Oracle for more information regarding Java Sockets
The Java Sockets API will allow you to specify the port number.
See here: http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#Socket%28java.net.InetAddress,%20int%29
精彩评论