Assuming $(Dev_Home) is an environment variable, you'd have to write a non-java hack to get at $(Dev_Home) these days. They got rid of System.getenv(). If you were using the users home dir you could use System.getProperty(), like:
import java.io.*;
class tmp {
public static void main(String argv[]) {
System.out.println(System.getProperty("user.home") );
}
}
HTH
--
Don't Stand on your head - you'll get footprints in your hair
http://charlieharvey.org.uk
http://charlieharvey.com