Buenas,
No puedo hacer pruebas ahora mismo en mi ordenador, pero te voy a comentar lo que creo que te pasa.
Hay dos cosas.
1.
En primer lugar, lanzas el programa pero no esperas a que termine. Por eso tu programa se termina antes de que el jar pueda ejecutarse.
Para quedarte a la espera de que el programa termine tienes que hacer un waitfor:
Código Java:
Ver original try {
p.waitFor();
e.printStackTrace();
e.printStackTrace();
}
Sin embargo, cuando lo ejecutes verás que sigue sin funcionar. Queda algo por hacer, por lo que pasamos al punto 2.
2.
Si lees la documentación de la clase Process verás lo siguiente:
Cita: By default, the created subprocess does not have its own terminal or console. All its standard I/O (i.e. stdin, stdout, stderr) operations will be redirected to the parent process, where they can be accessed via the streams obtained using the methods getOutputStream(), getInputStream(), and getErrorStream(). The parent process uses these streams to feed input to and get output from the subprocess. Because some native platforms only provide limited buffer size for standard input and output streams, failure to promptly write the input stream or read the output stream of the subprocess may cause the subprocess to block, or even deadlock.
En definitiva, lo que te está diciendo es que el comando ejecutado no saca su salida automaticamente a la consola, sino que debes hacer tu:
Código Java:
Ver original try {
while ((linea= output.readLine()) != null) {
}
while ((linea= error.readLine()) != null) {
}
p.waitFor();
e.printStackTrace();
e.printStackTrace();
}
Un saludo