Start a subprocess in j9
Hello everyone.
My PDA is HP IPAQ rx3715. I installed the J9 in the PDA.
I want to start a subprocess in J9.
I did it like this.
Runtime.getRuntime().exec("xxx.exe");
But it doesnot work.
The exception is:
java.io.IOException: Unable to start program
at com.ibm.oti.lang.SystemProcess.create(Unknown Soruce)
at java.lang.Runtime.exec(Unknown Source)
......
I searched many pages and finally, i learned that, it does not work at J2ME.
I just want to know if is there any other ways to do this.
many thanks.

