Z
zubairkhan
hi
i have a task in which i have to run a exe(simulation programme) from
java. using following code:
try {
suzrt = Runtime.getRuntime();
suzproc = suzrt.exec("cmd /C start suzana test");
} catch (java.io.IOException exception) {
System.out.println("Exception!");
}
now this exe will be a new process outside java, i need to pause it for
few seconds and resume it back.
i allready tried to pause the exe using several windows tools.
but the main requiremet of the task is that it shall run on diffrent
platforms like windows and linux).
how can i do this ?? any one has and idea abt this. help me.
i have a task in which i have to run a exe(simulation programme) from
java. using following code:
try {
suzrt = Runtime.getRuntime();
suzproc = suzrt.exec("cmd /C start suzana test");
} catch (java.io.IOException exception) {
System.out.println("Exception!");
}
now this exe will be a new process outside java, i need to pause it for
few seconds and resume it back.
i allready tried to pause the exe using several windows tools.
but the main requiremet of the task is that it shall run on diffrent
platforms like windows and linux).
how can i do this ?? any one has and idea abt this. help me.