/************************************/
Debug.Print(2, "javac " + jFile );
// Process proc = rt.exec( "javac " + jFile );
// proc.waitFor();
FileOutputStream out = new FileOutputStream( errFile );
Main compiler = new Main( out, "javac" );
String outdir = f1.getParent();
String[] args = null ;
if (outdir == null) outdir=".";
args = new String[] { "-d", outdir,
"-classpath",
System.getProperty("java.class.path" ),
jFile };
boolean result = compiler.compile( args );
/* Delete the temporary *.java file and check the return code */
/**************************************************************/
(new File(jFile)).delete();