Possible Duplicate:
Java - C-Like Fork?
I have a static void main with this:
ScreenStarter.main(clients.get(i).getSocket(), clientips.get(i));
In ScreenStarter, I have another static void main Where I call following:
public static void main(Socket sock, String ip) throws IOException{
new ClientConn(sock, ip).start();
}
Is it possible to start ScreenStarter as a seperate process?