295296297298299300301302303304
" -classpath " + classpath + " " + " -sourcepath " + srcpath + " " + filesToCompile; System.out.println( "Lauching: " + javacCmd ); ProcessUtil pu = ProcessUtil.getInstance(); pu.setEcho(System.out); pu.run(javacCmd, (String[]) null, "./" ); } }
559560561562563564565566567568