Hello,
I am trying to start a program i.e OpenOffice on a Linux maschine using following code:
String PROG_NAME = "......"; // Path to the program
.
.
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec(PROG_NAME);
The process is started, but I cannot see the output. On a Windows maschine everything works fine.
Can anybody help??
thanks
I am trying to start a program i.e OpenOffice on a Linux maschine using following code:
String PROG_NAME = "......"; // Path to the program
.
.
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec(PROG_NAME);
The process is started, but I cannot see the output. On a Windows maschine everything works fine.
Can anybody help??
thanks