Compiling with javac
Hi,
I have a class: com/easypaygroup/UDF/employee/EmployeeUDF.java
in directory: C:\dvl.home\env\jboss-4.0.3SP1\server\default\tmp\deploy\tmp43432easyweb-exp.war\WEB-INF\classes
Now I want to compile my class with javac but i get the error
error: cannot read: com/easypaygroup/UDF/employee/EmployeeUDF.java
I'm using
javac -sourcepath C:\dvl.home..... com/easypaygroup/UDF/employee/EmployeeUDF.java
I need this to compile my classes on the fly with the command
Runtime.getRuntime().exec("javac ....");
Thx in adv,
Pieter

