Quote:
Originally Posted by kovidgoyal
Really, the only safe way to do it is via the OPF.
|
Agreed.
I will convert my code to use it.
FYI: I'm using plain java ProcessBuilder class, as in:
Code:
...
String[] cmd = pl.toArray(new String[pl.size()]);
final Process p = new ProcessBuilder(cmd).start();
...
Thanks