Okay, so I am using process builder to launch an independent java process from the current java process, using the code:
ProcessBuilder pb = new ProcessBuilder("java", "-jar", "C:\\Users\\MyName\\Desktop\\Test.jar");
pb.start();
to test it, just as a simple questin, will the command always be "java -jar something.jar," on all operating systems? and if not, what are the formats for mac and linux?