JavaDude32
Programmer
Does anyone here know how to test to see if a GUI will run and if not, then how to make it run a console? Also, why doesn't such commands as dir (ran under the MS DOS prompt, haven't tested with Linux yet) work with the following:
Runtime the_runtime = Runtime.getRuntime();
Process p = the_runtime.exec('dir');
p.waitFor();
Thanks for any help anyone can offer.
Runtime the_runtime = Runtime.getRuntime();
Process p = the_runtime.exec('dir');
p.waitFor();
Thanks for any help anyone can offer.