: Here we go:
:
: try{
: Runtime r = Runtime.getRuntime();
: Process win = r.exec("C:\\WINNT\\explorer.exe");
: Process unix = r.exec("/usr/bin/ls");
: }catch(Exception e){
: System.out.println(e);
: }
:
: It is too bad that you cannot call EXEs
: directly which are in your PATH-environment variable.
:
: Reg, nils
:
:
thank u verymuch nils