public class MainClass { public static void main(String[] a) { String oldValue = System.clearProperty("java.class.path"); System.setProperty("user.dir", "C:/MyProg"); System.out.println(System.getProperty("user.dir")); } }
C:/MyProg